作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我的问题是:
https://gist.github.com/panSarin/4a221a0923927115584a
当我保存这个表格时,我收到了标题中的错误
NoMethodError (undefined method `updated?' for
#ActiveRecord::Associations::HasOneAssociation:0x00000008fcacf8>):
belongs_to
然后它工作正常。但我不敢相信我不能拥有 children 留下的建筑
parent_id
.知道我应该改变什么才能使它工作吗?
最佳答案
编辑
实际上,在我的例子中,我已经定义了两次关系,一次是 belongs_to
, 曾经作为 has_one_through
.漫长的一天:) 亚瑟的答案应该是公认的!
上一个答案:
Just had the same problem and worked it out. I had this:
has_one :organization, through: :event
I switched it to this:
has_one: organization, through: :event, autosave: false
updated?
on associations ,
belongs_to
,但是
not for has_one
(或
has_one_through
)。
关于ruby-on-rails - 未定义方法 `updated?' 用于 HasOneAssociation ,用于 Rails 4 中的嵌套属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21001653/
所以我的问题是: https://gist.github.com/panSarin/4a221a0923927115584a 当我保存这个表格时,我收到了标题中的错误 NoMethodError (u
我是一名优秀的程序员,十分优秀!