我有这段代码:
<%= collection_select :channel, @channelList, :id, :channelname, {prompt: (t "channel.add.prompt")}, class: "form-control"%>
得到了这个错误:
它是正常的活跃关系
在这种情况下,我的错误是什么?
感谢
答案 0 :(得分:1)
您必须指定:object, method, collection, value_method, text_method
,您可能忘记设置object
参数。
这将使这个:
<%= collection_select :object, :channel, @channelList, :id, :channelname, {prompt: (t "channel.add.prompt")}, class: "form-control"%>
(将:object
替换为您要将频道保存到的对象