我有一个基类Place
和多个使用STI约定的子类。我有一个单独的模型Post
,其中belongs_to
是Place
的子类之一:
class Place < ApplicationRecord
end
class SubPlace < Place
has_many :posts, class_name: "SubPlace", foreign_key: "sub_place_id"
end
class Post < ApplicationRecord
belongs_to :sub_place, class_name: "SubPlace", foreign_key: "sub_place_id"
end
可以使用Rails控制台保存一个新的Post
记录,但是当我试图为一个特定的SubPlace
查找Posts
时,得到了以下错误:
ActiveRecord::StatementInvalid (PG::UndefinedColumn: ERROR: column places.sub_place_id does not exist)
有没有办法让它工作,或者我的关联必须只与基类相关?
新增Schema:
create_table "posts", force: :cascade do |t|
t.string "title"
t.bigint "sub_place_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["sub_place_id"], name: "index_posts_on_sub_place_id"
end
create_table "places", force: :cascade do |t|
t.string "name"
t.string "type"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
2条答案
按热度按时间chhqkbe11#
处理关联和STI的一个更好的方法是将关联设置为基类:
这使事情变得简单和美好,因为
Post
不知道或关心有不同类型的地方。当您访问@post.place
时,ActiveRecord读取places.type
列并将示例化正确的子类型。如果基础Place类也有关联,你只需要把它写为:
r1zhe5dt2#
ActiveRecord::StatementInvalid(PG::UndefinedColumn:错误:列位置.sub_place_id不存在)
您在
SubPlace
中的关联无效。你应该重写一下