我有一个Post模型和Tag模型,有很多关系。
class Post < ActiveRecord::Base
has_and_belongs_to_many :tags
end
class Tag < ActiveRecord::Base
has_and_belongs_to_many :posts
end
我还有posts_tags
的联接表:
class JoinPostsAndTags < ActiveRecord::Migration
def change
create_table :posts_tags do |t|
t.integer :tag_id
t.integer :post_id
t.timestamps null: false
end
end
end
现在,我需要提供多种选择来为帖子选择标签。
以下是帖子form.html.erb
<%= form_for @post do |f| %>
<% if @post.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@post.errors.count, "error") %> prohibited this post from being saved:</h2>
<ul>
<% @post.errors.full_messages.each do |message| %>
<li><%= message %></li>
<% end %>
</ul>
</div>
<% end %>
<div class="field">
<%= f.label :Name %><br>
<%= f.text_field :Name %>
</div>
<div class="field">
<%= f.label :Email %><br>
<%= f.text_field :Email %>
</div>
<div class="field">
<%= f.label :Message %><br>
<%= f.text_area :Message %>
</div>
<% @tags= Tag.all %>
<% if @tags %>
<% @tags.each do |tag| %>
<div>
<%= check_box_tag "post[tag_ids][]", tag.id, @post.tags.include?(tag) %>
<%= tag.name %>
</div>
<% end %>
<% end %>
<br><br>
<%= link_to 'Create Tag', tags_path %>
<br><br>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
没有将所选标签添加到帖子中。我需要将选定的标签添加到帖子中。我怎么能这样做。
但是,如果我使用post= Post.first
tag= Tag.first
post.tags<<tag
,则在 rails控制台中将tag
添加到post
。
我在post controller
中没有任何特殊代码来处理这个问题。请帮帮我。
答案 0 :(得分:2)
将{tag_ids:[]}
添加到params
中的permit
PostsController
个参数中,如下所示:
def post_params
params.require(:post).permit(:name, :email, :message, {tag_ids:[]})
end