ruby-on-rails – Rails多态的has_many:through

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Rails多态的has_many:through前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我从外部API中提取一些数据,并希望在本地缓存结果.我有一个类SearchTerm,我想通过表searchable_items与几个不同的ActiveRecord类型相关联.我很确定我正确地设置了表格,但我的协会中的某些内容必须是错误的.
class Foo < ActiveRecord::Base
  has_many :search_terms,:as => :searchable,:through => :searchable_items
end

class Bar < ActiveRecord::Base
  has_many :search_terms,:through => :searchable_items
end

class SearchTerm < ActiveRecord::Base
  has_many :searchables,:through => :searchable_items
end

class SearchableItem < ActiveRecord::Base
  belongs_to :search_term
  belongs_to :searchable,:polymorphic => true
end

我希望能够做一些类似SearchTerm.find_by_term(‘SearchTerm’)的搜索项(它会返回一个Foo和Bar对象的数组),但是我收到错误
在SearchTerm模型中找不到关联:searchable_items

提前感谢您可以提供给我的任何见解!

解决方法

您需要向Foo,Bar和SearchTerm模型添加has_many:searchable_items关联,因为:through => :searchable_items选项是指该关联.

http://guides.rubyonrails.org/association_basics.html#the-has_many-through-association

原文链接:https://www.f2er.com/ruby/272795.html

猜你在找的Ruby相关文章