1
我有用戶,位置和關注,其中用戶have_many位置:through =>:如下。遵循belongs_to用戶和位置。我想在Follows表中添加一行 - 即在用戶和位置之間創建一個關係關係。如何在Ruby on Rails的中間關係中創建一行
我不知道如何做到這一點,或者如果我採取跟隨權:
class CreateFollows < ActiveRecord::Migration
def change
create_table :follows |do| t
t.references :user_id
t.references :location_id
t.timestamps
end
end
end
而且我嘗試使用添加的代碼遵循的關係,給用戶ID和locationid,是
newFollow = Follow.new(:user_id => userid, :location_id => locationid)
newFollow.save
我收到錯誤未知屬性:user_id。
有什麼想法?我很困難。非常感謝!
完成,對不起! – user1436111