给定app / helpers / url_helper.rb中的自定义帮助文件
module UrlHelper
...
end
如何在所有控制器和所有视图中访问它?
答案 0 :(得分:11)
或者......将它们包含在您的控制器中
class ApplicationController < ActionController::Base
include UrlHelper
end
答案 1 :(得分:7)
将它放在ApplicationController(不是帮助器)中并声明helper_method :method_name
。