我在看别人写的例子有这么一段代码:
class ApplicationController < ActionController::Base
protect_from_forgery
rescue_from CanCan::AccessDenied do |exception|
redirect_to root_path, :alert => exception.message
end
end
问题是:
protect_from_forgery 明显是一个方法 类里面可以直接调用方法?
然后:
rescue_from CanCan::AccessDenied do |exception|
redirect_to root_path, :alert => exception.message
end
这段代码是什么意思?
求解释。