gpt4 book ai didi

ruby-on-rails - rails : method_missing is not called on model when using associations

转载 作者:行者123 更新时间:2023-12-04 03:54:01 25 4
gpt4 key购买 nike

我当前的代码:

class Product < ActiveRecord::Base
belongs_to :category
end

class Category < ActiveRecord::Base
def method_missing name
true
end
end

Category.new.ex_undefined_method #=> true
Product.last.category.ex_undefined_method #=> NoMethodError: undefined method `ex_undefined_method' for #<ActiveRecord::Associations::BelongsToAssociation:0xc4cd52c>

发生这种情况是因为 Rails 中的这段代码仅将存在的方法传递给模型。

private
def method_missing(method, *args)
if load_target
if @target.respond_to?(method)
if block_given?
@target.send(method, *args) { |*block_args| yield(*block_args) }
else
@target.send(method, *args)
end
else
super
end
end
end

这就是我想要的:

Product.last.category.ex_undefined_method #=> true

我怎样才能做到这一点?

最佳答案

请注意,AssociationProxy 对象仅发送目标声明为 respond_to? 的方法。因此,此处的解决方法是同时更新 respond_to?:

class Category < ActiveRecord::Base
def method_missing(name, *args, &block)
if name =~ /^handleable/
"Handled"
else
super
end
end

def respond_to?(name)
if name =~ /^handleable/
true
else
super
end
end
end

事实上,如果您重新定义 method_missing,您应该始终更新 respond_to? - 您已经更改了类的接口(interface),所以您需要确保每个人都知道它。参见 here .

关于ruby-on-rails - rails : method_missing is not called on model when using associations,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6198058/

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