- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
在OpenProject应用我们有两种模型:
class CustomField < ActiveRecord::Base
has_many :custom_options, -> { order(position: :asc) }, dependent: :delete_all
accepts_nested_attributes_for :custom_options
...
end
class CustomOption < ActiveRecord::Base
belongs_to :custom_field, touch: true
...
end
然后在custom field controller我们通过批量分配修改自定义字段的选项并保存记录:
@custom_field.attributes = get_custom_field_params
if @custom_field.save
...
因为 touch: true
在 CustomOption
中的 custom_field
关联上配置,所以我希望自定义字段的 updated_at
属性在此时更新,但这并没有发生。日志不显示任何类似于 UPDATE custom_fields SET update_at = ....
的 SQL 请求。对自定义选项本身的更改,无论是添加自定义选项还是修改自定义选项,都会正确保留。
调试显示:
custom_field.custom_options.build
和随后的 custom_field.save
时出现相同的错误行为custom_field.custom_options.create
时所需的行为CustomOption.create custom_field: x
时所需的行为custom_field.custom_option[x].destroy
时所需的行为我知道我可以通过定义 after_save
回调来解决这个问题,但这种行为真的让我很恼火,因为它出乎意料。
是否需要并记录上述行为?如果是这样,我在哪里可以找到这些信息?
最佳答案
问题是,如果父模型有任何 after_commit
回调(可能还有一些其他的),:touch
会在自动保存相关记录时停止工作,即使回调不是做任何事情。
您的 CustomField
模型具有来自 acts_as_list
gem 的 after_commit
回调。这会破坏 :touch
。
有一个类似的问题https://github.com/rails/rails/issues/26726 .该问题与 accepts_nested_attributes_for
有关,但我确信 accepts_nested_attributes_for
与它无关,至少在您的情况下是这样。
由问题作者 (@ulferts) 添加:
在 CustomField
中的 custom_options
关联上定义 inverse_of: 'custom_field'
似乎绕过了这个问题,原因不明。
has_many :custom_options,
-> { order(position: :asc) },
dependent: :delete_all,
inverse_of: 'custom_field'
关于ruby-on-rails - belongs_to touch : true not fired on association. 构建和嵌套属性赋值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46448140/
我使用的是 Ruby on Rails 4.2。现在使用关系并尝试在 ContosoUniversity of .net MVC 示例中所示的 Instructor 和 Office_Assignme
我有以下关联 class Picture < ActiveRecord::Base belongs_to :user end class User < ActiveRecord::Base h
我有 Category 和 belongs_to 类别的 Product。设置: mix phoenix.new shop cd shop mix ecto.create mix phoenix.ge
我的应用程序中有相当多的 belongs_to 关联,其中一些是可选的(即关联可以为 nil),一些是强制性的(关联必须是有效的父记录。 我最初的方法是使用我自己的验证方法来验证给定的 id(这里是强
我有以下事件记录类 class Car < ActiveRecord::Base belongs_to :owner end 在我尝试这个的代码中 Car.first.owner 它给我错误“未定
visits 有很多 visitsTasks 属于 tasks。 我正在查看 visits 表中的特定行 (visitID),并希望找到所有已完成的任务。在这些任务中,我想访问 path 和 mode
以前有人问过类似的问题,但我就是不明白。 所以我有 Model_A 和 Model_B。模型_B 属于 模型_A。我想做的是,当我创建 Model_A 时,自动调用 Model B 的 create
我有一个模型 class Survey :true end def update_saved_settings!(person=nil) self.responses_saved_d
我有 3 张属于同一批货的发票。创建的第一张发票始终是装运的主发票。 Invoice id shipment_id 21 55 # This is the main invoice 88
我有一个模型下载,带有一个表下载。 downloads 有一个名为 ip_address 的字段,它将 ip 地址存储为整数。我想设置一个 IpAddress 模型,但没有 ip_addresses
我有这个问题: 我有这段代码: 用户.rb: class User Name: Content: | 我在这里错过了什么?我无法访问 full_name 方法,但我不
所以我正在做一个应用程序,其中有一个“游戏”模型,该模型具有来自 4 个不同用户的 4 个属性。其中一个属性是 player_id,另外 3 个是用户 uid(facebook 给出的字符串 id)。
我有两个模型:Users 和 Posts。按照我的设置方式,帖子属于所有者(即用户)并且还有许多参与者(即用户)。在我的用户模型中,我想确保 owner 永远不属于 post。我在前端完成了此操作,但
用户.rb enum gender: [:Male, :Female] belongs_to :qualification 资格.rb has_many :users 当我查询时 User.all.g
用户有很多帖子。 class User has_many :posts end 帖子属于用户。 class Post belongs_to :user end 我正在尝试查找由管理员的用户发布
我正在使用两种不同的模型Person 和Organization。在许多其他属性中,Person 和 Organization 都可以是 Contractor。如果我只使用 Person 模型并想存储
拥有这些示例模型: class Post < ActiveRecord::Base belongs_to :category end class Category < ActiveRecord::
我有一个表格,学生可以在其中注册类(class)。当用户提交表单时,他就注册了类(class)并保存了他的付款信息。换句话说,一个 Enrollment对象被创建,Student对象已更新...除了我
我有 2 个表叫 Member和 MemberResume . MemberResume引用 Member在 key 上memberid . 在 MemberResume模型的关系是这样设置的: 'm
我有一个标记模型,具有与标记和可标记项目的多态关联。可标记项目都与 feed_item (has_one :feed_item) 有关联。我想将标记与 feed_item 相关联,即在 tagging
我是一名优秀的程序员,十分优秀!