How to call ApplicationController methods from ApplicationHelper

后端 未结 2 2002
野趣味
野趣味 2021-02-01 13:11

I want to provide csv links in a view and I placed the csv generating code in ApplicationHelper. However I\'m getting this error:

undefined method `         


        
2条回答
  •  不思量自难忘°
    2021-02-01 13:23

    If the issue is to make methods in ApplicationHelper available in all controllers, why not add a line

    include ApplicationHelper
    

    to the ApplicationController file?

提交回复
热议问题