- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的 rails 应用程序中,我有两个模型:Person
和 Company
。我需要指定这些对象的任何对之间的多对多关系。所以我应该可以这样做:
@connections = @person.connections
其中 @connections
是 Person
和 Company
对象的数组。
现在我已经为此创建了 ConnectionBinding
模型,但它不能按预期工作:
class ConnectionBinding < ActiveRecord::Base
belongs_to :connect_from, polymorphic: true
belongs_to :connect_to, polymorphic: true
end
它认为 ActiveRecord::HasManyThroughAssociationPolymorphicSourceError
异常
有人已经解决了这个问题吗?任何建议表示赞赏。
最佳答案
您需要告诉 ActiveRecord 它正在寻找的关联列。我猜你想要以下内容:
class Person < ActiveRecord::Base
has_many :connection_bindings
has_many :companies, :through => :connection_bindings
has_many :people, :through => :connection_bindings
end
class company < ActiveRecord::Base
has_many :connection_bindings
has_many :companies, :through => :connection_bindings
has_many :people, :through => :connection_bindings
end
问题是您有两个表,将 id 放在一个列中,Rails 不知道要查找哪个表。
例如,在数据库中任何给定的 connection_binding 行上,connect_from 可以是 company_id 或 person_id,connect_to 也是如此。所以你说:'Hey Rails,加载我关联的 ConnectionBindings',它得到一行 connect_from 为 11,connect_to 为 12。但它是 Person.find(12) 还是 Company.find(12)?没办法说!
相反,您必须向 Rails 提供更多信息:
class Person < ActiveRecord::Base
has_many :connection_bindings
has_many :person_connections, :through => :connection_bindings, :source => :to_connect, :source_type => 'Person'
has_many :company_connections, :through => :connection_bindings, :source => :to_connect, :source_type => 'Company
def connections
person_connections + company_connections
end
end
您需要在另一端构建它(以及相关的 :from_connect),但这取决于您如何使用这些连接。应该足以让您入门。
它比您在 Ruby 和 Rails 的神奇世界中所习惯的要多得多,但您正在尝试构建一个非常复杂的数据模式。这并不意味着这是不可能的——Rails 作为一个优秀的框架,不会阻止你做任何你真正想做的事情——但它并不常见,需要你明确一些。
关于ruby-on-rails - 双多态关联,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15367098/
我来自 Asp.Net 世界,试图理解 Angular State 的含义。 什么是 Angular 状态?它类似于Asp.Net中的ascx组件吗?是子页面吗?它类似于工作流程状态吗? 我听到很多人
我一直在寻找 3 态拨动开关,但运气不佳。 基本上我需要一个具有以下状态的开关: |开 |不适用 |关 | slider 默认从中间开始,一旦用户向左或向右滑动,就无法回到N/A(未回答)状态。 有人
我是一名优秀的程序员,十分优秀!