Rails使用复选框为帖子添加标签(多对多)

时间:2015-10-11 12:36:25

标签: html ruby-on-rails ruby ruby-on-rails-4

我有一个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中没有任何特殊代码来处理这个问题。请帮帮我。

1 个答案:

答案 0 :(得分:2)

{tag_ids:[]}添加到params中的permit PostsController个参数中,如下所示:

def post_params
  params.require(:post).permit(:name, :email, :message, {tag_ids:[]})
end