3***@qq.com
3***@qq.com
  • 发布:2022-09-26 18:41
  • 更新:2024-09-22 15:10
  • 阅读:423

前端在h5状态下无法获取cookie是什么原因呀?

分类:uni-app

前端在h5状态下无法获取cookie是什么原因呀?

网络请求js
uni.request({
url: 'http://127.0.0.1:8000/index',
withCredentials: true,
success(req) {
uni.showToast({
icon: 'none',
title: req.data
})
console.log(req)
},
fail() {
uni.showToast({
icon: 'none',
title: '链接失败'
})
}
})

返回的数据

{
"cookies": [],
"data": "创建cookies",
"errMsg": "request:ok",
"header": {
"content-length": "13",
"content-type": "text/html; charset=utf-8",
"cross-origin-opener-policy": "same-origin",
"date": "Mon, 26 Sep 2022 10:33:41 GMT",
"referrer-policy": "same-origin",
"server": "WSGIServer/0.2 CPython/3.10.6",
"x-content-type-options": "nosniff",
"x-frame-options": "DENY"
},
"statusCode": 200
}

2022-09-26 18:41 负责人:无 分享
已邀请:
9***@qq.com

9***@qq.com

最后怎么解决的呢? 我也遇到这个问题了

要回复问题请先登录注册