方法
实例公共方法
fetch(request) 链接
来源: 显示 | 在 GitHub 上
# File actionpack/lib/action_controller/metal/request_forgery_protection.rb, line 318 def fetch(request) request.session[:_csrf_token] end
reset(request) 链接
来源: 显示 | 在 GitHub 上
# File actionpack/lib/action_controller/metal/request_forgery_protection.rb, line 326 def reset(request) request.session.delete(:_csrf_token) end
store(request, csrf_token) 链接
来源: 显示 | 在 GitHub 上
# File actionpack/lib/action_controller/metal/request_forgery_protection.rb, line 322 def store(request, csrf_token) request.session[:_csrf_token] = csrf_token end