2023-08-31 09:52AM
<%= select_tag "enterprise_id", options_from_collection_for_select(@enterprises, "id", "name"), class: 'my_select', style: 'width: 280px;
想要在options_from_collection_for_select下拉框里面增加选项'全部',并且使它提交的值为 nil
<%= select_tag "enterprise_id", options_from_collection_for_select(@enterprises, "id", "name"), :include_blank => '全部', class: 'my_select', style: 'width: 280px;
:include_blank => '全部'
会在选项集合的开头添加一个额外的选项,下拉框里面会显示选项 "全部",而选项值为 nil
。
这样增加就可以了
登录
请登录后再发表评论。
评论列表:
目前还没有人发表评论