gpt4 book ai didi

ruby-on-rails - Rails 类如何直接调用类上的方法

转载 作者:行者123 更新时间:2023-12-02 02:41:51 25 4
gpt4 key购买 nike

我试图更多地了解 Rails 的神秘方式,我有以下问题。

当我在类里面时,例如一个模型,我可以直接调用方法,而无需将方法调用放在模型的方法内。

例如:

Post < ApplicationRecord

has_many :comments

end

在本例中,has_many 是一个方法调用,但它只是位于我的 Post 类中,而不位于方法内部。如果我尝试在空白的 ruby​​ 项目中做同样的事情,它就不起作用。

例如

class ParentClass

def say_hello
p "Hello from Parent Class"
end

end


class ChildClass < ParentClass

say_hello

end

child = ChildClass.new
# => undefined local variable or method `say_hello' for ChildClass:Class (NameError)

那么 Rails 是如何做到的呢?我一直看到它,我什至看到一些添加这些方法调用的 gem,例如acts_as_votable

谁能解释一下这是怎么回事?

最佳答案

这里有两个重要的概念 - 第一个是,与 Java 等更经典的语言不同,Ruby 中的类主体只是一个可执行代码块:

class Foo
puts "I can do whatever I want here!!!"
end

class 只是声明常量(或者重新打开该类,如果它已经存在),并在正在创建(或重新打开)的类的上下文中执行该 block 。这个类是 Class 类的一个实例,我们称之为单例类特征类,这可能是一个令人困惑的概念,但如果你考虑一下 Ruby 中的一切都是对象和类只是对象,它们是创建实例的蓝图,因此可以拥有自己的方法和属性。

第二个概念是内隐 self 。在 Ruby 中,方法调用始终有一个接收者 - 如果您不指定接收者,则假定为 self。类声明 block 中的 self 是类本身:

class Bar
puts name # Bar
# is equivalent to
puts self.name
end

因此,您可以通过简单地将方法定义为类方法而不是实例方法来修复示例:

class ParentClass
def self.say_hello
p "Hello from Parent Class"
end

say_hello # Hello from Parent Class
end

has_many仅仅是从ActiveRecord::Base继承的类方法,它通过添加方法来修改类本身。

class Thing < ApplicationRecord
puts method(:has_many).source_location # .../activerecord-6.0.2.1/lib/active_record/associations.rb 1370
end

Ruby 有许多此类元编程的示例,例如内置的 #attr_accessor 方法,它们通常称为宏方法。一旦您了解了元编程概念,这些方法就非常简单:

class Foo
def self.define_magic_method(name)
define_method(name) do
"We made this method with magic!"
end
end

def self.define_magic_class_method(name)
define_singleton_method(name) do
"We made this method with magic!"
end
end

define_magic_method(:bar)
define_magic_class_method(:bar)
end
irb(main):048:0> Foo.new.bar
=> "We made this method with magic!"
irb(main):048:0> Foo.baz
=> "We made this method with magic!"

它并不是真正的魔法 - 它只是一个修改类本身的类方法。

关于ruby-on-rails - Rails 类如何直接调用类上的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63464969/

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