您好我有has_and_belongs_to_many
之間的關係帖子和評論,並在我的編輯行動我有窗體,返回我的ID列表1,3,5,8
等我想建立之間的關係,我的當前模型和所有模型IDS列表,以便@post.comments
將返回評論與1,3,5,8
IDS從ID列表建立關係
其實我需要執行
DELETE FROM comments_posts
WHERE post_id = @post.id
INSERT INTO comments_posts VALUES
(1,@post.id)
(3,@post.id)
(5,@post.id)
(8,@post.id)
或做類似的事情
當然!我寫了「comments_ids」而不是「comment_ids」,這不是我第一次這樣做:) – Bohdan 2010-08-03 22:20:03