1

ある種のこの関連付けを行うことは可能ですか?

ユーザーモデル:

has_many :goods, :through => :assignments
has_many :goods_want, :through => :assignments, :source => :good, :conditions => "assignments.type = 1"

コンソールでのテスト

u = User.first
u.goods_want << Good.first
u.save

これはログに記録されています:

INSERT INTO `assignments` (`good_id`, `updated_at`, `type`, `profile_id`, `created_at`) VALUES(1, '2009-03-26 09:36:11', NULL, 1, '2009-03-26 09:36:11')

では、この関連付けをデータベースからレコードを取得するだけでなく、データベースに書き込むために機能させるための美しい方法はありますか?

4

1 に答える 1

1

課題を作成しませんか?

a = Assignment.new
a.type = 1
a.good = Good.first
a.user = User.first
a.save
于 2009-03-26T16:48:46.727 に答える