如果已经 require 某 helper module 以后需要再用 helpers xxxHelper 来声明吗? 我的调用是在 app.rb 里面
class App < Sinatra::Application
Dir[root_path("app/**/*.rb")].each do |file|
require file
end
end
然后在 app/modules/xx.rb 里面写
get '/' do
testfunc ”string"
slim :index
end
报错说没有 testfunc 这方法,这个方法是在 app/helpers/xxxHelper.rb 定义的