我要求我通过fetch(url)
制作。它看起来像我的饼干似乎没有被传递?
这样做的规范方法是什么?我应该将document.cookie
传递给fetch
请求吗?
答案 0 :(得分:2)
您在传递的init对象中需要credentials: 'include'
作为第二个arg传递给fetch(…)
:
fetch(url, {
credentials: 'include'
})
答案 1 :(得分:1)
在传递给第二个参数的选项对象中使用credentials
:
fetch('url', {
credentials: 'include'
})
credentials
也需要same-origin
,它只会发送与所请求网址的域名匹配的Cookie。