美文网首页
fetch携带cookie

fetch携带cookie

作者: 寒枫Alex | 来源:发表于2017-05-07 05:19 被阅读0次

    fetch获取的东西, 默认是无光本站的cookie的, 所以请求时是默认不带cookie, response里的set-cookie也是无效的,设置credentials: 'includes'启用cookie.
    例:

    fetch('/login?name=slaver00&psw=123', { method: 'POST', credentials: 'includes' })
        .then(...);
    

    相关文章

      网友评论

          本文标题:fetch携带cookie

          本文链接:https://www.haomeiwen.com/subject/kqfutxtx.html