0

如何为具有命名空间的模型编写关系?

如果我有Class Foo::Bar并且Class Employee我想在他们之间有 habtm 我会写吗

Class Foo::Bar

has_and_belongs_to_many :employees

end

并且在

Class Employee
has_and_belongs_to_many ???? # <- how do I write this part?
end
4

1 回答 1

2

您可以执行以下操作:

class Employee
  has_and_belongs_to_many :foo_bars, :class_name => "Foo::Bar"
end

然后你应该能够访问一个实例Foo::Bar上的所有对象Employeeemployee.foo_bars

于 2013-02-02T16:43:27.610 回答