首頁  >  文章  >  web前端  >  Vue+php處理跨域問題

Vue+php處理跨域問題

php中世界最好的语言
php中世界最好的语言原創
2018-06-13 10:39:433676瀏覽

這次帶給大家Vue php處理跨域問題,Vue php處理跨域問題的注意事項有哪些,以下就是實戰案例,一起來看一下。

問題描述

前端vue 框架,後台php,百度跨域問題後台加這段程式碼

header("Access-Control-Allow-Origin: *");

加之後報這個錯:

The value of the 'Access-Control-Allow-Origin' header in the response must not be the wildcard '*' when the request's credentials mode is 'include'.
The value of the 'Access-Control-Allow-Origin' header in the response must not be the wildcard '*' when the request's credentials mode is 'include'.



############################# ##################解決方法#############文章連結:CORS: credentials mode is 'include'###
xhrFields: {
 withCredentials: false
},
###把###withCredentials: true### 改成###withCredentials: false###,如果你沒加上面那段程式碼當然也不會報這個錯。雖然是解決方法很簡單,但經此發現許多知識沒掌握不得不梳理下。 ######•HTTP 請求方式有許多種,有些請求會觸發 CORS 預檢請求。 「需預檢的請求」會使用 OPTIONS 方法發起預檢請求到伺服器,以獲知伺服器是否允許該實際請求。 ######•對於跨網域請求瀏覽器一般不會傳送身分憑證資訊。如果要傳送憑證訊息,則需要設定 XMLHttpRequest 的 withCredentials 屬性為 true:withCredentials: true。此時要求伺服器的回應訊息中攜帶 Access-Control-Allow-Credentials: true,否則回應內容將不會回傳。 ######•對於攜帶身分憑證的請求,伺服器不得設定 ###Access-Control-Allow-Origin ###的值為「*」。因為請求頭攜帶了 Cookie 資訊。要將 ###Access-Control-Allow-Origin ###的值設定為 http://www.zrt.local:8080。 ######•另外,回應頭中也攜帶了### Set-Cookie ###字段,嘗試對 Cookie 進行修改。如果操作失敗,將會拋出異常。 ######跨域請求想要帶上cookies 必須在請求頭裡面加上:###
crossDomain: true, 
xhrFields: {
  withCredentials: true
}
###又變成文章開頭的問題了,解決方法:###### 後台程式碼: ###
Access-Control-Allow-Origin: 'http://www.zrt.local:8080'
Access-Control-Allow-Credentials: true
###前端程式碼:###
crossDomain: true, 
xhrFields: {
  withCredentials: true
}
###跟之前一樣就行了。 ######相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章! ######推薦閱讀:#########小程式開發分享頁面後返回首頁###############Vue的UI元件庫自訂動態元件##########

以上是Vue+php處理跨域問題的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn