我为我的网络应用程序提出了这个表架构:
+----------+------------+------------+
| User | Event | Invitation |
+----------+------------+------------+
| id | id | id |
+----------+------------+------------+
| email | user_id | user_id |
+----------+------------+------------+
| password | start_time | event_id |
+----------+------------+------------+
| | end_time | confirmed |
+----------+------------+------------+
这是三种型号。用户可以拥有许多活动和许多邀请。事件属于一个用户,邀请属于一个用户和一个事件。
class User < ActiveRecord::Base
has_many :events
has_many :invitations
end
class CreateUsers < ActiveRecord::Migration
def change
create_table :users do |t|
t.string :email
t.string :password
t.timestamps null: false
end
end
end
class Event < ActiveRecord::Base
belongs_to :user
end
class CreateEvents < ActiveRecord::Migration
def change
create_table :events do |t|
t.references :user
t.datetime :start
t.datetime :end
t.string :description
t.string :venue
t.timestamps null: false
end
end
end
class Invitation < ActiveRecord::Base
belongs_to :event
belongs_to :user
end
class AlterInvitation < ActiveRecord::Migration
def change
create_table :invitations do |t|
t.references :event
t.references :user
t.boolean :confirmed
t.timestamps null: false
end
end
end
现在这是我对Rails的理解,所以如果我想要太聪明并且不遵守惯例,请告诉我,因为我确定这是非常标准的架构/模型设置。
当我尝试这样做时:
u = User.first
u.events.create(start_time:DateTime.now, end_time:DateTime.now + 1)
这一切都按预期工作。 user_id
已分配给创建它的用户。现在假设我们有一位用户u2
已发送邀请参加我刚才创建的活动e1
。
e1 = u.events.first
u2.invitations.create(event_id:e1.id, confirmed:false)
当我想引用属于事件e1
的邀请时,它不会像我期望的那样工作:
e1.invitations
NoMethodError: undefined method `invitations' for #<Event:0x007ff214387a08>
我的印象是belongs_to :event
行会为我启用方法invitations
。任何人都可以帮我解决这个问题吗?谢谢。
答案 0 :(得分:1)
尝试
class Event < ActiveRecord::Base
belongs_to :user
has_many :invitations, through: :user
end
答案 1 :(得分:0)
如果我理解你的意图,事件应至少has_many :invitations
。