gpt4 book ai didi

ruby-on-rails - 在 after_save 中调用类方法

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

这可能是一个愚蠢的观点,但我没有找到解决方案。

我有一个带有类方法的简单模型 update_menu我希望在每次保存实例后调用它。

Class Category
attr_accessible :name, :content


def self.menu
@@menu ||= update_menu
end

def self.update_menu
@@menu = Category.all
end
end

那么获得 after_filter 的正确语法是什么?调用 update_menu ?

我试过:
after_save :update_menu

但它在实例(不存在)上而不是在类上查找方法。

感谢您的回答。

最佳答案

通过删除 self 使其成为实例方法.

# now an instance method
def update_menu
@@menu = Category.all
end

拥有 after_save 没有多大意义类方法的回调。类没有保存,实例保存。例如:
# I'm assuming the code you typed in has typos since
# it should inherit from ActiveRecord::Base
class Category < ActiveRecord::Base
attr_accessible :name
end

category_one = Category.new(:name => 'category one')
category_one.save # saving an instance

Category.save # this wont work

关于ruby-on-rails - 在 after_save 中调用类方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11413431/

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