价值观变化的问题

发布于 2024-11-08 20:24:22 字数 387 浏览 0 评论 0原文

我有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

枯寂 2024-11-15 20:24:22

目前在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文