ruby-on-rails – 如何在模型中调用ApplicationController中定义的方法

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 如何在模型中调用ApplicationController中定义的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经在ApplicationController中定义了方法
class ApplicationController < ActionController::Base
   helper_method :get_active_gateway
   def get_active_gateway(cart)
     cart.account.gateways
   end
end

当我在模型中调用方法

class Order < ActiveRecord::Base
   def transfer
     active= get_active_gateway(self.cart)
   end
end

它抛出错误undefined局部变量get_active_gateway.

所以我写了

class Order < ActiveRecord::Base
   def transfer
    active= ApplicationContoller.helpers.get_active_gateway(self.cart)
   end
end

那么Nilclass就是抛出错误未定义的方法.

我在Rails 3.2.0中工作.

请给出解决方案.

解决方法

为什么你需要这样的东西?该模型不应该知道它的控制器.也许在这种情况下,您的系统的重新设计将更为合适.

这里是一个链接到类似的thread.

原文链接:https://www.f2er.com/ruby/265845.html

猜你在找的Ruby相关文章