1
如何設置withCredentials=true
到fetch
哪些返回承諾。 是以下正確的:設置withCredentials到新的ES6內置的HTTP請求API:取
fetch(url,{
method:'post',
headers,
withCredentials: true
})
我覺得MDN documentation談到的一切,除了這一點上的HTTP請求:withCredentials
它也在[官方規格](ht tps://fetch.spec.whatwg.org/#cors-protocol-and-credentials)以XHR爲例 – CodingIntrigue