我寫了一個小幫手方法在我的ApplicationController是這樣的:訪問自定義幫助
helper_method :dehumanize
def dehumanize (string)
string.parameterize.underscore
end
現在,我想在我的模型文件一個使用它,但它似乎沒有可用那裏。
我也試圖與:
ApplicationController.dehumanize(title)
模型
,但它不工作。
如何使它在那裏工作的任何線索?
感謝,
+1想出來的盒子 –