gpt4 book ai didi

ruby-on-rails - 在 options_for_select 标记的选择列表中包含第一项的空白

转载 作者:行者123 更新时间:2023-12-03 00:53:48 25 4
gpt4 key购买 nike

我尝试了 :include_blank => true,但没有成功。

<select>
<%= options_for_select Model.all.collect{|mt| [mt.name, mt.id]} %>
</select>

如果我需要将其添加到集合中,您会怎么做?

最佳答案

我想你想要这种格式:

select("model_name", "model_id", Model.all.collect {|mt| [ mt.name, mt.id ] }, {:include_blank => 'name of your blank prompt'})

顺便说一句:假设 Model 应该是 Model。要使用collection_select:

collection_select(:model, :model_id, Model.all, :id, :name, :prompt => true)

关于ruby-on-rails - 在 options_for_select 标记的选择列表中包含第一项的空白,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6710965/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com