本文介绍了将withCredentials设置为新的ES6内置HTTP请求API:Fetch的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何将 withCredentials = true
设置为返回承诺。
以下是正确的:
How to set withCredentials=true
to fetch
which return promise.Is the following correct :
fetch(url,{
method:'post',
headers,
withCredentials: true
});
我认为讨论了关于http请求的所有内容,除此之外: withCredentials
I think the MDN documentation talked about everything about http-requesting except this point: withCredentials
推荐答案
知道了:
credentials: 'include'
而不是
withCredentials: true
这篇关于将withCredentials设置为新的ES6内置HTTP请求API:Fetch的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!