首先是我的代码:
class ApplicationController < ActionController::Base
protect_from_forgery
rescue_from Cancan::AccessDenied do |exception|
flash[:error] = "Access denied"
redirect_to root_url
end
end
当我运行一个 deny 页面的时候,出现如下错误:
uninitialized constant ApplicationController::Cancan
SO 的这篇文章是这么说的:http://stackoverflow.com/questions/11315608/uninitialized-constant-applicationcontrollercancan-nameerror-in-production
但是我是直接用 rails s 测试运行的,是不是 webrick 也有不加载的问题呢?