gpt4 book ai didi

ruby-on-rails - rails - 如何在保存后刷新关联

转载 作者:行者123 更新时间:2023-12-03 10:44:24 25 4
gpt4 key购买 nike

我有一个包含项目列表的类别。项目有一个位置,类别有一个关系 has_many :items, :order => "position"。当用户更新位置值时,我想查看它的位置。我的位置是一个浮点数,允许在四舍五入的数字之间移动。

pos=item.category.items.map(&:id)
current_position=pos.index(id.to_i)
item.save # want to refresh the relationship here
pos_new=item.categoty.items.map(&:id)
# grabbing this since just accessing item isn't updated if positioning has changed
item_new=Item.find(id)
pos_new=item_new.category.items.map(&:id)
new_position=pos_new.index(id)
if current_position!=new_position
is_moved=true # sent back in JSON to propagate a dynamic change.
end

以上工作,但它似乎真的很冗长。有没有办法让我在项目保存时告诉类别关系需要刷新,因为订单可以更改?

最佳答案

您可以使用 item.reload这将从数据库中重新获取模型,下次您调用关联时,它将重新获取它。

关于ruby-on-rails - rails - 如何在保存后刷新关联,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12678389/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com