价值观变化的问题
我有 2 个型号的
-product (width an boolean attribute named "active")
-variant
产品有很多变体,
所以如果我这样做:
p = Product.first
p.active = false
p.save
p = Product.first
p.active = true
v = p.variants.first
v.product.active is equal to false
为什么?
如何在不保存表产品的情况下读取最后设置的活动值?
谢谢,
我正在使用 ruby ree 1.8.7
I have 2 a models
-product (width an boolean attribute named "active")
-variant
product has many variants
so if i do this:
p = Product.first
p.active = false
p.save
p = Product.first
p.active = true
v = p.variants.first
v.product.active is equal to false
why?
How can i read the last setted active's value without save the table product?
thanks
I'm using ruby ree 1.8.7
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前在 Rails 3.0 中还无法执行此操作,但由于身份映射,在 Rails 3.1 中可能可以执行此操作。您必须先将对象保存到数据库,然后才能读取这样的属性。
You cannot do this at the moment in Rails 3.0, although it may be possible in Rails 3.1 due to the identity map. You will have to save the object to the database before you can read the attribute like that.