标签: javascript ecmascript-6 xmlhttprequest fetch-api
如何将withCredentials=true设置为fetch并返回承诺。 以下是正确的:
withCredentials=true
fetch
fetch(url,{ method:'post', headers, withCredentials: true });
我认为除withCredentials
withCredentials
答案 0 :(得分:24)
得到here:
credentials: 'include'
而不是
withCredentials: true