2023-08-31 09:42AM
<span class="query_submissions" >区域: <%= select_tag :enterprise_region, options_for_select(@regions, params[:enterprise_region]), class: 'select_region', style: 'width: 200px;' %></span>
想要在options_for_select中增加 '全部' 的选项,并且使它提交的值为 nil
<span class="query_submissions" >区域: <%= select_tag :enterprise_region, options_for_select([['全部', nil]] + @regions, params[:enterprise_region]), class: 'select_region', style: 'width: 200px;' %></span>
这样增加就可以了
登录
请登录后再发表评论。
评论列表:
目前还没有人发表评论