當出現403跨域錯誤的時候 no 'access-control-allow-origin' header is present on the requested resource
,需要給nginx服務器配置響應的header參數:
一、 解決方案
只需要在nginx的配置文件中配置以下參數:
location / { add_header access-control-allow-origin *; add_header access-control-allow-methods 'get, post, options'; add_header access-control-allow-headers 'dnt,x-mx-reqtoken,keep-alive,user-agent,x-requested-with,if-modified-since,cache-control,content-type,authorization'; if ($request_method = 'options') { return 204; } }
上面配置代碼即可解決問題了,不想深入研究的,看到這里就可以啦=-=
二、 解釋
1. access-control-allow-origin
服務器默認是不被允許跨域的。給nginx服務器配置`access-control-allow-origin *`后,表示服務器可以接受所有的請求源(origin),即接受所有跨域的請求。
2. access-control-allow-headers 是為了防止出現以下錯誤:
request header field content-type is not allowed by access-control-allow-headers in preflight response.
這個錯誤表示當前請求content-type的值不被支持。其實是我們發起了"application/json"的類型請求導致的。這里涉及到一個概念:預檢請求(preflight request),請看下面"預檢請求"的介紹。
3. access-control-allow-methods 是為了防止出現以下錯誤:
content-type is not allowed by access-control-allow-headers in preflight response.
4.給options 添加 204的返回,是為了處理在發送post請求時nginx依然拒絕訪問的錯誤
發送"預檢請求"時,需要用到方法 options ,所以服務器需要允許該方法。
三、 預檢請求(preflight request)
其實上面的配置涉及到了一個w3c標準:cros,全稱是跨域資源共享 (cross-origin resource sharing),它的提出就是為了解決跨域請求的。
跨域資源共享(cors)標準新增了一組 http 首部字段,允許服務器聲明哪些源站有權限訪問哪些資源。另外,規范要求,對那些可能對服務器數據產生副作用的http 請求方法(特別是 get 以外的 http 請求,或者搭配某些 mime 類型的 post 請求),瀏覽器必須首先使用 options 方法發起一個預檢請求(preflight request),從而獲知服務端是否允許該跨域請求。服務器確認允許之后,才發起實際的 http 請求。在預檢請求的返回中,服務器端也可以通知客戶端,是否需要攜帶身份憑證(包括 cookies 和 http 認證相關數據)。
其實content-type字段的類型為application/json的請求就是上面所說的搭配某些 mime 類型的 post 請求,cors規定,content-type不屬于以下mime類型的,都屬于預檢請求:
application/x-www-form-urlencoded
multipart/form-data
text/plain
所以 application/json的請求 會在正式通信之前,增加一次"預檢"請求,這次"預檢"請求會帶上頭部信息 access-control-request-headers: content-type:
options /api/test http/1.1 origin: http://foo.example access-control-request-method: post access-control-request-headers: content-type ... 省略了一些
服務器回應時,返回的頭部信息如果不包含access-control-allow-headers: content-type則表示不接受非默認的的content-type。即出現以下錯誤:
request header field content-type is not allowed by access-control-allow-headers in preflight response.