13

我在 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 local variable get_active_gateway

所以我写了

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

然后它被扔了error undefined method nil for Nilclass

我在 Rails 3.2.0 中工作。

4

2 回答 2

8

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

这是一个类似线程的链接。

于 2012-04-17T12:14:00.530 回答
5

作为一种设计选择,不建议从您的模型中调用控制器助手。

您可以简单地将所需的详细信息作为参数传递给您的模型方法。

def 传输(active_gateway)
  活动 = 活动网关
结尾
于 2012-04-17T12:14:35.507 回答