0
In: http://api.rubyonrails.org/classes/ActionController/RequestForgeryProtection.html爲什麼rails不驗證CSRF的XHR請求?
這決定了跨站請求僞造驗證。以下功能:
def non_xhr_javascript_response?
content_type =~ %r(\Atext/javascript) && !request.xhr?
end
結束表示沒有XHR請求驗證CSRF,即使令牌無效?
這是爲什麼? XHR請求是否意味着CRSF不需要使用Auth令牌進行驗證?
感謝Frederick! – damau 2014-10-03 15:32:03