8.12号版本更新之后,app中uni.request中携带的自定义cookie失效,在不更新前是可以使用的。
uni.request({
url: this.apiServer + '/client/schedule/scheduleList?page=1&limit=1000',
method: 'GET',
header: {
'Access-Control-Allow-Origin': '*',
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
//#ifdef APP-PLUS || MP-WEIXIN
'cookie': uni.getStorageSync("sessionid")
//#endif
},
});
8***@qq.com
- 发布:2020-08-14 16:12
- 更新:2020-08-14 18:20
- 阅读:1030
1***@qq.com
另外我在处理自定义cookie是放在app.vue的globalData里持有的,应该比同步本地存储要快一些,你可以参考一下
2020-08-14 18:22
8***@qq.com (作者)
回复 1***@qq.com: 好的,非常感谢
2020-08-17 15:35