// 微信支付
wxpay(info) {
let that = this
uni.requestPayment({
"provider": "wxpay",
"orderInfo": {
"appid": info.appId,
"noncestr": info.nonceStr,
"package": info.package,
"partnerid": info.partnerid,
"prepayid": info.prepayid,
"timestamp": info.timeStamp,
"sign": info.sign
},
success(res) {
this.result = res
this.getCallback()
},
fail(err) {
this.result = err
console.log('支付失败:' + JSON.stringify(err));
}
})
},
7***@qq.com
- 发布:2023-02-09 11:30
- 更新:2023-02-09 14:01
- 阅读:212
7***@qq.com (作者)
能唤醒,也能支付成功,就是没有返回
2023-02-09 14:50
亦春亦秋
回复 7***@qq.com:
把你的this 换成that试一下
2023-02-09 14:57
7***@qq.com (作者)
回复 亦春亦秋: 还没用 现在 success,fail 还是不执行
2023-02-09 15:18
亦春亦秋
回复 7***@qq.com:
1.在第一行直接log个123
2.第二行开启个定时器 5s , 里面打印456
看一下有没有输出
2023-02-09 15:22
7***@qq.com (作者)
回复 亦春亦秋: 好了 发现问题了
2023-02-09 16:09
亦春亦秋
回复 7***@qq.com: 好的,祝顺利
2023-02-09 16:13