我想确保用户在提交表单之前选择一个类别,但:required => true
似乎不起作用。这是选择:
<%= f.collection_select :category_id, Category.all, :id, :name, :prompt => 'Choose a category' %>
有什么建议吗?
答案 0 :(得分:12)
试试这个
<%= f.collection_select(:category_id, Category.all, :id, :name, {:prompt => 'Choose a category'}, {:required => true}) %>
说明:
根据Rails文档,collection_select
函数的语法如下所示:
collection_select(object, method, collection, value_method, text_method, options = {}, html_options = {})
根据语法options
和html_options
是哈希值,因此您需要将它们括在大括号中。
参考 - http://apidock.com/rails/ActionView/Helpers/FormOptionsHelper/collection_select