瀏覽器拒絕來自跨來源回應的Set-Cookie 標頭
您遇到前端無法設定收到的HTTP cookie 的問題從後端。此問題源自於客戶端程式碼中「withCredentials」配置不當。
要解決此問題,請確保將「withCredentials」設定為請求的屬性而不是標頭。而不是使用:
headers: { Accept: `application/json`, 'Content-Type': 'application/json', withCredentials: true, },
將客戶端程式碼修改為:
headers: { Accept: `application/json`, 'Content-Type': 'application/json', }, withCredentials: true,
以上是為什麼我的瀏覽器拒絕跨來源回應中的 Set-Cookie 標頭?的詳細內容。更多資訊請關注PHP中文網其他相關文章!