小程序开发中需要在请求头header中用到 token 验证
header:{
‘content-type’: ‘application/x-www-form-urlencoded’,
‘access_token’:‘123’
}
之前这样写没什么问题, 但是在小程序中一直找不到token,查了很多资料都是这种方法,后来
let header = {
‘content-type’: ‘application/x-www-form-urlencoded’,
}
header[‘access_token’] = ‘123456’;
这样写之后可以获取到 token 搞不明白这是怎么回事,有没有大神讲一下