gpt4 book ai didi

ruby-on-rails - 即使提供记录 ID 也无法更新嵌套属性

转载 作者:行者123 更新时间:2023-12-04 17:13:56 24 4
gpt4 key购买 nike

我正在尝试更新嵌套记录,但由于某种原因它不起作用并且我的更新操作被忽略。如果我在控制台中运行以下代码,它将返回 true,但实际上没有为 field_values_attributes 更新任何内容,只有 step_attributes 按预期工作 = status 更新为 6。如果我删除“id”=>“35”,则会创建新的 field_value很好,所以 UPDATE 有问题。传递 id 和 _destroy 参数时,DESTROY 操作也起作用。

# CREATE - WORKING
myrecord.update("status"=>6, "field_values_attributes"=>[{"value"=>"new_value"}])

# UPDATE - NOT WORKING
myrecord.update("status"=>6, "field_values_attributes"=>[{"id"=>"35", "value"=>"new_value"}])

# DESTROY- WORKING
myrecord.update("status"=>6, "field_values_attributes"=>[{"id"=>"35", "_destroy"=>"1"}])
字段值模型
# FieldValue.rb
class FieldValue < ApplicationRecord
attr_accessor :value

belongs_to :field, class_name: 'FieldInput', foreign_key: 'field_component_id'
before_validation :set_value

private
def set_value
# when run in debug mode, the following code is not executed / ignored for UPDATE action, working fine for CREATE action
case field.field_type.key
when 'text'
self.text_value = value
when 'number'
self.number_value = value
when 'date'
else
self.string_value = value
end
end
执行步骤.rb
class ExecutionStep < ApplicationRecord
has_many :field_values, class_name: 'FieldValue', as: :valueable, dependent: :destroy

enum status: { not_started: 0, in_progress: 1, paused: 3, retry: 4, completed: 5, failed: 6, canceled: 7 }

accepts_nested_attributes_for :field_values, allow_destroy: true
end
过去有其他人遇到过同样的问题吗?
谢谢,米罗

最佳答案

解决方案:
替换 attr_accessor :value (我的虚拟属性,未存储在 DB 中,使用nested_attributes 时Rails 未检测到更改)与attribute :value灵感来自 Accepts Nested Attribute with a virtual attribute

关于ruby-on-rails - 即使提供记录 ID 也无法更新嵌套属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69025258/

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