gpt4 book ai didi

ruby-on-rails - 如何在 ActiveSupport::Concern 中获取类名?

转载 作者:行者123 更新时间:2023-12-02 00:43:13 24 4
gpt4 key购买 nike

我有用户、产品和订单类。我有一个共同关注的记录器,我已将其包含在每个记录器中。我在 Logger 模块中有一个 after_create 回调,它将记录创建。我需要不同类型的类名和日志。

class User
include Logger
attr_accessor :name
end

class Product
include Logger
attr_accessor :name
end

class Order
include Logger
attr_accessor :name
end

我有记录器模块

module Logger
extend ActiveSupport::Concern

included do
after_create :log_event
end

def log_event
puts "#{<some way to get name of the class>} created now."
end
end

我想要“某种获取类(class)名称的方法”。我试过self.name(返回类的name属性中的值),self.class.name(返回Class),self.downcase(返回错误),self.table_name(返回错误)。请让我知道解决方案。重要的是我也不要过多地改变这个结构。

最佳答案

在使用关注点时,您可以只使用 self.name 而不是 self.classself.class.name

例子:

def log_event
puts "#{self.name} created now."
end

关于ruby-on-rails - 如何在 ActiveSupport::Concern 中获取类名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45448546/

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