标签: ruby-on-rails
我们可以在控制器方法中调用辅助函数吗?你能给我一个简单的例子吗?
答案 0 :(得分:2)
当然,只需在控制器中包含帮助器:
def MyController < ApplicationController include MyHelper ... end