gpt4 book ai didi

ruby-on-rails - before_update 语法

转载 作者:太空宇宙 更新时间:2023-11-03 17:40:26 24 4
gpt4 key购买 nike

post.rb 模型

   after_update :assign_owner

def assign_owner
self.owner = "test"
end

上述方法适用于终端,但不会更改 Rails 中 Post.new.owner 的值。我错过了什么?

最佳答案

这是更新后的(对象需要保存)所以

post = Post.new.save

然后

post.owner  # will be test

如果你想这样做,你可能需要使用 after_initialize

例如在 post.rb 中

class Post < ActiveRecord::Base
protected
def after_initialize
self.owner = "test
end
end

关于ruby-on-rails - before_update 语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5447216/

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