使用fetch携带cookie

背景:前端使用的Vue,后端用nodejs,解决跨域使用的 cors,找了很久一直以为是后端的问题

只需要在fetch中添加 credentials: ‘include’,

fetch('http://localhost:3000/token/verify',{
    method:'POST',
    headers:{
      'Content-type' : 'application/json',
    },
    credentials: 'include',
    body: JSON.stringify({
      token
    })
  }

还可以有其他值
omit: 缺省值, 默认为该值.
same-origin: 同源, 表示同域请求才发送cookie.

你可能感兴趣的:(前端,javascript,开发语言)