0

假设我有以下模型:

    class Event < ActiveRecord::Base
      has_many :tips
    end

    class Tip < ActiveRecord::Base
    end

提示描述只是VARCHAR(140)MySQL 数据库中的一个,其中大多数是固定值,例如“穿雨衣”或“带支票簿”。我想使用规范化来避免存储大量具有相同值的字符串,但是,如果我添加belongs_to :eventTip模型中,该event_id值会导致许多重复提示。

如何在不手动管理tip_id <---> tip_description映射的情况下获得规范化的好处?

4

1 回答 1

2

如果您想避免在表中重复输入,请使用has_and_belongs_to_many

class Event < ActiveRecord::Base
  has_and_belongs_to_many :tips
end

class Tip < ActiveRecord::Base
  has_and_belongs_to_many :events
end

迁移创建events_tips

class CreateEventsTips < ActiveRecord::Migration
  def change
    create_table :events_tips, :id => false do |t|
      t.integer :event_id
      t.integer :tip_id
    end
  end
end

在控制器中:

tip = Tip.find_or_create_by_tip_description(params[:tip][:description])
Event.find_by_id(params[:id]).tips << tip
于 2013-02-09T04:16:39.033 回答