作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个带有简单文本字段的表单,我需要填写该表单:
<%= f.text_field :email, :required => true %>
<%= f.collection_select(:list_ids, List.where(user_id: current_user), :id, :name, {}, {multiple: true}), :required => true %>
syntax error, unexpected ',', expecting ')' ..., :name, {}, {multiple: true}), :required => true );@output_... ... ^
:required => true
选项,代码可以正常工作。在这种情况下,如何强制用户选择?谢谢
最佳答案
尝试改变这个
<%= f.collection_select(:list_ids, List.where(user_id: current_user), :id, :name, {}, {multiple: true}), :required => true %>
<%= f.collection_select :list_ids, List.where(user_id: current_user), :id, :name, {}, {multiple: true, required: true} %>
关于ruby-on-rails - collection_select类型字段上的必填字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35726763/
我是一名优秀的程序员,十分优秀!