本文介绍了控制器的调用模块函数(NoMethodError)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
所以我有一个模块MiddleMan我可以调用它只是罚款在rails控制台,但在控制器中我得到一个NoMethodError
So I have a module "MiddleMan" I am able to call it just fine in the rails console but in the controller I am getting a NoMethodError
在控制器我有:
class SignUpController < ApplicationController
include MiddleMan
def page_one
@package = MiddleMan::read_catalog("a", "b", "c")
end
end
在middleman.rb模块中,我有:
And in the middleman.rb module I have:
module MiddleMan
def read_catalog(package, payment, coupon)
Package.new(:price => "4.99")
end
end
有任何想法吗?
推荐答案
由于你包含了模块,你的类中添加了实例方法 read_catalog
,所以你可以直接调用它:
Since you included the module the instance method read_catalog
is added to your Class, so you can call it directly:
class SignUpController < ApplicationController
include MiddleMan
def page_one
@package = read_catalog("a", "b", "c")
end
end
这篇关于控制器的调用模块函数(NoMethodError)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!