gpt4 book ai didi

ruby-on-rails - Rails 确定来自 accepts_nested_attributes_for 对象的对象是否已更改?

转载 作者:行者123 更新时间:2023-12-04 03:33:42 25 4
gpt4 key购买 nike

我知道 rails 的基本脏指示符方法,如果对象的直接属性发生更改,这些方法会起作用,我想知道如何确定我的 child 是否已更新..

我有一个文件集合的表格,我们称之为 文件夹 .一个文件夹 accepts_nested_attributes_for :files。我需要确定(在 Controller 操作中)是 params 散列中的文件是否与数据库中的文件不同。所以,用户 删除其中一个文件 ,他们是否添加新文件 , 或 两者 (删除一个文件,然后添加另一个)

我需要确定这一点,因为如果用户删除了一个文件,而不是添加一个新文件,或者只是更新了文件夹的属性,我需要将用户重定向到不同的操作。

最佳答案

def update
@folder = Folder.find(params[:id])
@folder.attributes = params[:folder]

add_new_file = false
delete_file = false
@folder.files.each do |file|
add_new_file = true if file.new_record?
delete_file = true if file.marked_for_destruction?
end

both = add_new_file && delete_file

if both
redirect_to "both_action"
elsif add_new_file
redirect_to "add_new_file_action"
elsif delete_file
redirect_to "delete_file_action"
else
redirect_to "folder_not_changed_action"
end
end

有时您想知道该文件夹已更改,而无需确定如何更改。在这种情况下,您可以使用 autosave您协会中的模式:
class Folder < ActiveRecord::Base 
has_many :files, :autosave => true
accepts_nested_attributes_for :files
attr_accessible :files_attributes
end

然后在 Controller 中你可以使用 @folder.changed_for_autosave?返回此记录是否以任何方式更改(new_record?,marked_for_destruction?,已更改?),包括其任何嵌套的自动保存关联是否同样更改。

更新。

您可以将特定于模型的逻辑从 Controller 移动到 folder 中的方法中模型,例如 @folder.how_changed? ,它可以返回 :add_new_file、:delete_file 等符号之一(我同意你的观点,这是一个更好的做法,我只是试图让事情变得简单)。然后在 Controller 中,您可以保持逻辑非常简单。
case @folder.how_changed?
when :both
redirect_to "both_action"
when :add_new_file
redirect_to "add_new_file_action"
when :delete_file
redirect_to "delete_file_action"
else
redirect_to "folder_not_changed_action"
end

此解决方案使用 2 种方法: new_record?marked_for_destruction?在每个子模型上,因为 Rails 内置方法 changed_for_autosave?只能说 child 变了没怎么变。这只是如何使用这些指标来实现您的目标的方式。

关于ruby-on-rails - Rails 确定来自 accepts_nested_attributes_for 对象的对象是否已更改?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3732223/

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