active record中delegate方法文档

本文介绍如何使用delegate方法将封装对象的公共方法作为自己的方法进行调用,特别适用于ActiveRecord关联场景。通过配置target、prefix和allow_nil选项,可以实现灵活的方法委托。实例展示了如何在Rails中利用delegate方法简化方法调用,并处理目标对象可能为nil的情况。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

delegate(*methods) Link
Provides a delegate class method to easily expose contained objects’ public methods as your own.

Options

:to - Specifies the target object

:prefix - Prefixes the new method with the target name or a custom prefix

:allow_nil - if set to true, prevents a NoMethodError to be raised

The macro receives one or more method names (specified as symbols or strings) and the name of the target object via the :to option (also a symbol or string).

Delegation is particularly useful with Active Record associations:

class Greeter < ActiveRecord::Base
def hello
‘hello’
end

def goodbye
‘goodbye’
end
end

class Foo < ActiveRecord::Base
belongs_to :greeter
delegate :hello, to: :greeter
end

Foo.new.hello # => “hello”
Foo.new.goodbye # => NoMethodError: undefined method `goodbye’ for #
Multiple delegates to the same target are allowed:

class Foo < ActiveRecord::Base
belongs_to :greeter
delegate :hello, :goodbye, to: :greeter
end

Foo.new.goodbye # => “goodbye”
Methods can be delegated to instance variables, class variables, or constants by providing them as a symbols:

class Foo
CONSTANT_ARRAY = [0,1,2,3]
@@class_array = [4,5,6,7]

def initialize
@instance_array = [8,9,10,11]
end
delegate :sum, to: :CONSTANT_ARRAY
delegate :min, to: :@@class_array
delegate :max, to: :@instance_array
end

Foo.new.sum # => 6
Foo.new.min # => 4
Foo.new.max # => 11
It’s also possible to delegate a method to the class by using :class:

class Foo
def self.hello
“world”
end

delegate :hello, to: :class
end

Foo.new.hello # => “world”
Delegates can optionally be prefixed using the :prefix option. If the value is true, the delegate methods are prefixed with the name of the object being delegated to.

Person = Struct.new(:name, :address)

class Invoice < Struct.new(:client)
delegate :name, :address, to: :client, prefix: true
end

john_doe = Person.new(‘John Doe’, ‘Vimmersvej 13’)
invoice = Invoice.new(john_doe)
invoice.client_name # => “John Doe”
invoice.client_address # => “Vimmersvej 13”
It is also possible to supply a custom prefix.

class Invoice < Struct.new(:client)
delegate :name, :address, to: :client, prefix: :customer
end

invoice = Invoice.new(john_doe)
invoice.customer_name # => ‘John Doe’
invoice.customer_address # => ‘Vimmersvej 13’
If the target is nil and does not respond to the delegated method a NoMethodError is raised, as with any other value. Sometimes, however, it makes sense to be robust to that situation and that is the purpose of the :allow_nil option: If the target is not nil, or it is and responds to the method, everything works as usual. But if it is nil and does not respond to the delegated method, nil is returned.

class User < ActiveRecord::Base
has_one :profile
delegate :age, to: :profile
end

User.new.age # raises NoMethodError: undefined method `age’
But if not having a profile yet is fine and should not be an error condition:

class User < ActiveRecord::Base
has_one :profile
delegate :age, to: :profile, allow_nil: true
end

User.new.age # nil
Note that if the target is not nil then the call is attempted regardless of the :allow_nil option, and thus an exception is still raised if said object does not respond to the method:

class Foo
def initialize(bar)
@bar = bar
end

delegate :name, to: :@bar, allow_nil: true
end

Foo.new(“Bar”).name # raises NoMethodError: undefined method `name’
The target method must be public, otherwise it will raise NoMethodError.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值