我有两个模型Client
和Topic
. 两者之间都有 HABTM 关联。
我正在尝试_form
在我的客户端视图中的部分添加一个选择语句,允许用户向客户端添加主题(或编辑该主题等)。
这是我的表单部分的样子:
<%= form_for(@client) do |f| %>
<div class="field">
<%= f.label :topic %><br />
<%= f.select :topics, Topic.all.collect { |topic| [topic.name, topic.id] }, {:include_blank => 'None'} %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
我得到的第一个错误是:
ActiveModel::MassAssignmentSecurity::Error in ClientsController#create
Can't mass-assign protected attributes: topics
所以,在我的Client
模型中,我添加了这个:
attr_accessible :email, :firm_id, :name, :phone, :topics
这是我现在得到的错误:
NoMethodError in ClientsController#create
undefined method `each' for "1":String
我的控制器的创建动作Clients
非常标准:
def create
@client = Client.new(params[:client])
respond_to do |format|
if @client.save
format.html { redirect_to @client, notice: 'Client was successfully created.' }
format.json { render json: @client, status: :created, location: @client }
else
format.html { render action: "new" }
format.json { render json: @client.errors, status: :unprocessable_entity }
end
end
end
topics
这些是提交的参数(正在传递的通知- 而不是topic_id
但topic_id
也不起作用):
{"utf8"=>"✓",
"authenticity_token"=>"J172LuZQc5NYoiMSzDD3oY9vGmxxCX0OdxcGm4GSPv8=",
"client"=>{"name"=>"Jack Daniels",
"email"=>"jack.daniels@some-email.com",
"phone"=>"2345540098",
"firm_id"=>"2",
"topics"=>"1"},
"commit"=>"Create Client"}
如何使用此 select 语句在创建客户端时将主题分配给我的客户端?
谢谢!