刚一小伙伴跑过来问,为何拿到token
后去请求接口一直报“No authorization token was found”
,在网上一顿乱查也没找出是什么原因。
莫慌,用express-jwt
中间件验证token
时注意一下两点:
1.token前加 Bearer
2.Bearer后要空格
headers: {
Authorization: 'Bearer ' + JSON.parse(window.localStorage.getItem('token'))
}
刚一小伙伴跑过来问,为何拿到token
后去请求接口一直报“No authorization token was found”
,在网上一顿乱查也没找出是什么原因。
莫慌,用express-jwt
中间件验证token
时注意一下两点:
1.token前加 Bearer
2.Bearer后要空格
headers: {
Authorization: 'Bearer ' + JSON.parse(window.localStorage.getItem('token'))
}
评论区