Rails 4如何使用seeds.rb填充连接表

时间:2016-02-23 08:11:44

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

我正在练习Rails。我想为它们提供消息和标签(单个消息应该有很多标签,单个标签应该有很多消息)。我有2个相关模型:消息标签。它们使用 has_and_belongs_to_many 关联。我正在使用ffaker来填充表格

模型:

消息:

class Message < ActiveRecord::Base
  has_many :comments, dependent: :destroy
  has_and_belongs_to_many :tags
end

标签:

class Tag < ActiveRecord::Base
  has_and_belongs_to_many :messages
end

迁移:

消息:

class CreateMessages < ActiveRecord::Migration
  def change
    create_table :messages do |t|
      t.text :content
      t.timestamps
    end
  end
end

标签:

class CreateTags < ActiveRecord::Migration
  def change
    create_table :tags do |t|
      t.string :title
    end
  end
end

加入表:

class CreateMessagesTagsJoinTable < ActiveRecord::Migration
  def change
    create_table :messages_tags, id: false do |t|
      t.references :tag, index: true
      t.references :message, index: true
    end
  end
end

种子文件:

5.times { Message.create([content: FFaker::CheesyLingo.paragraph]) }

Message.all.each do |msg|
  rand(4).times { Comment.create([content: FFaker::CheesyLingo.sentence, message_id: msg.id]) }
  2.times { msg.tags.create([title: FFaker::HipsterIpsum.word.gsub(' ','-').downcase]) }
end

评论无关紧要。首先,我在这里填充消息表。其次,我从消息内部填充标签表。我最终得到的是填充的消息和标签表,其中每条消息都有2个标签。

现在,问题是:

如何将已创建的标签与消息相关联,反之亦然?我知道如何通过创建它们来实现,但现在我想将几个标签关联到单个消息。我还想将几条消息与已经创建的单个标记相关联。 怎么做,语法是什么?

1 个答案:

答案 0 :(得分:3)

这应该有效

Message.all.each do |msg|
  rand(4).times { Comment.create([content: FFaker::CheesyLingo.sentence, message_id: msg.id]) }
  tags = 2.times { msg.tags.create([title: FFaker::HipsterIpsum.word.gsub(' ','-').downcase]) }
  msg.tags = tags
end

或者您可以手动执行

msg = Message.first
tag = Tag.first
tag.messages << msg
# or
msg.tags << tag