gpt4 book ai didi

ruby-on-rails-3 - 在 Rails 中使用具有命名空间的模型的关系

转载 作者:行者123 更新时间:2023-12-04 17:00:35 26 4
gpt4 key购买 nike

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

如果我有 Class Foo::BarClass 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

最佳答案

你可以这样做:

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

然后你应该可以访问所有 Foo::Bar Employee 上的对象实例与 employee.foo_bars

关于ruby-on-rails-3 - 在 Rails 中使用具有命名空间的模型的关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14663952/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com