作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试急切加载嵌套的多态关联。我似乎无法找到解决方案。
这是我的模型设置:
class Post
has_many :comments
end
class Comment
belongs_to :ownable, polymorphic: true
end
class User
has_many :comments, as: :ownable
end
Post.includes(comments: :ownable).to_a
ActiveRecord::EagerLoadPolymorphicError - Can not eagerly load the polymorphic association :ownable
最佳答案
首先你的帖子 has_many 评论也应该设置为:as => ownable
class Post
has_many :comments, as: :ownable
end
关于ruby-on-rails - 如何预先加载嵌套的多态关联,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19290251/
问了这个问题How to reach CSS zen? ,我现在明白我遇到的问题大多与定位有关。我发现一些文章说 CSS 作为布局系统并不总是足够好。 http://echochamber.me/vi
我是一名优秀的程序员,十分优秀!