首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

如何在Rails 中将复选框默认为"选中"?

在Rails中,要将复选框默认为"选中",可以使用以下方法:

  1. 在视图中使用check_box方法,并将checked选项设置为true
代码语言:ruby
复制
<%= check_box("model", "attribute", { checked: true }, 1, 0) %>
  1. 在控制器中设置默认值。
代码语言:ruby
复制
def new
  @model = Model.new
  @model.attribute = true
end
  1. 在模型中设置默认值。
代码语言:ruby
复制
class Model< ApplicationRecord
  after_initialize :set_defaults, if: :new_record?

  def set_defaults
    self.attribute = true
  end
end

这样,在Rails应用程序中创建新记录时,复选框将默认为"选中"状态。

页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

没有搜到相关的沙龙

领券