在我的helper/posts_helper.rb
文件中,我定义了一个这样的方法:
module PostsHelper
def testing(test)
"Yep its a #{test}"
end
end
我认为这个测试助手应该只在我的帖子视图中工作。但它适用于我的所有视图,甚至是我的应用程序其他资源的视图。我不把这个放进去application_helper.rb
。怎么会这样?
这是我的application_controller.rb
class ApplicationController < ActionController::Base
# Prevent CSRF attacks by raising an exception.
# For APIs, you may want to use :null_session instead.
protect_from_forgery with: :exception
end