最新文章:
- 什么是静态服务器
- npx是什么东东,跟npm有啥关系?
- AMD宣布将在全球范围内裁员4%
- 处理Deprecation Warning: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.警告
- 什么是原子化CSS
您的位置:
富录-前端开发|web技术博客
>
JavaScript >
express项目校验token时,报“No authorization token was found”莫慌
express项目校验token时,报“No authorization token was found”莫慌
发布时间:2022年06月01日 评论数:抢沙发阅读数: 9452
刚一小伙伴跑过来问,为何拿到token后去请求接口一直报“No authorization token was found”,在网上一顿乱查也没找出是什么原因。
莫慌,用express-jwt中间件验证token时注意一下两点:
1.token前加 Bearer
2.Bearer后要空格
headers: { Authorization: 'Bearer ' + JSON.parse(window.localStorage.getItem('token')) }
本文作者:DGF
文章标题:
express项目校验token时,报“No authorization token was found”莫慌
本文地址: https://arbays.com/post-183.html  本文已被百度收录!
版权声明:若无注明,本文皆为“富录-前端开发|web技术博客”原创,转载请保留文章出处。
本文地址: https://arbays.com/post-183.html  本文已被百度收录!
版权声明:若无注明,本文皆为“富录-前端开发|web技术博客”原创,转载请保留文章出处。
相关文章