如何将withCredentials=true设置为 fetch 并返回promise。
以下是正确的:

fetch(url,{
   method:'post',
   headers,
   withCredentials: true
});

我认为MDN documentation讨论了有关http请求的所有内容,除了这一点:withCredentials

最佳答案

得到了here:

  credentials: 'include'

并不是
  withCredentials: true

09-25 19:31