let promise = new Promise (function (resolve, reject) {
uni.request({
url: api(url),
method: method,
header: {'content-type': 'application/x-www-form-urlencoded'},
data: data,
success: function (res) {
if (res.data.retCode == 1) {
resolve(res.data)
} else if (res.data.retCode == 104 || res.data.retCode == 108 || res.data.retCode == 105) { // 105 异地登录, 108重复登录
reject(res.data)
} else if (res.data.retCode == 704) { // 号卡下单结果等待
reject(res.data)
} else {
setTimeout(() => {
uni.showToast({
title: res.data.retMsg,
icon: 'none',
duration: 2000
})
}, 100)
reject(res.data)
}
if (res.data.retCode != 704) {
uni.hideLoading()
}
},
fail: err => {
reject(err)
uni.hideLoading()
},
complete: res => {
res.data = res.data || {}
if (res.data.retCode != 704) {
uni.hideLoading()
}
complete(res)
}
})
})
- 发布:2020-11-13 18:22
- 更新:2020-11-13 18:59
- 阅读:781
产品分类: uniapp/小程序/微信
PC开发环境操作系统: Mac
PC开发环境操作系统版本号: 10.15.5 (19F101)
HBuilderX类型: 正式
HBuilderX版本号: 2.9.8
第三方开发者工具版本号: 1.03.2010240
基础库版本号: 不知道
项目创建方式: HBuilderX
App下载地址或H5⽹址: 微信小程序:卡券掌柜
示例代码:
操作步骤:
无
无
预期结果:
set cookies 成功
set cookies 成功
实际结果:
set cookies 失败
set cookies 失败
小波波 (作者)
是的
2020-11-13 19:02
DCloud_UNI_GSQ
回复 小波波: 那需要反馈到微信小程序社区
2020-11-13 20:12
1***@qq.com
回复 DCloud_UNI_GSQ: 如果在小程序可以,在h5中使用uniapp无法获取set-cookie的内容,如何解决
2021-01-11 18:09