b***@qq.com
b***@qq.com
  • 发布:2022-11-14 10:38
  • 更新:2022-11-14 10:53
  • 阅读:730

ios内购 在沙盒测试中,支付成功后没有回调,重启app,再次点击支付后,控制台输出了上次支付的结果

分类:uni-app
复制代码async jumptoPay(id,iosid) {  
                let that = this;  
                let ajax = new this.$api()  
                let result = await ajax.request(this.$url.addOrder,{  
                    recharge_integral_id : this.id  
                })  
                this.maskShow = true  
                console.log(id)  
                console.log(result.data.order_no)  
                this.order_no = result.data.order_no  
                uni.requestPayment({  
                    provider: 'appleiap',  
                    orderInfo: {  
                        productid: iosid,  
                        username: result.data.order_no,  
                        quantity: 1,  

                    },  
                    success: async (e) => {  
                        console.log(e)  
                        let transactionReceipt = e.transactionReceipt  
                        let order_no = e.payment.username  
                        let ajax = new this.$api()  
                        let check = await ajax.request(this.$url.checkIos,{  
                            order_no,  
                            receipt:transactionReceipt  
                        })  
                        if(check.code == 1) {  
                            that.$refs.uToast.show({  
                                title: check.msg,  
                                type: 'success',  
                            })  
                        }  
                        this.maskShow = false  
                        uni.$emit('updateDot')  
                        console.log(check)  

                    },  
                    fail: (e) => {  
                        uni.hideLoading();  
                        uni.showModal({  
                            content: "支付失败,原因为: " + e.errMsg,  
                            showCancel: false  
                        })  
                    }  
                })  

            },

这是支付代码,有人遇到过吗,网上有需要通过苹果审核才有回调的说法

2022-11-14 10:38 负责人:无 分享
已邀请:
DCloud_uni-ad_HDX

DCloud_uni-ad_HDX

沙盒环境:一个测试账号相同产品仅能购买一次,重复测试需要重新添加沙盒测试账号

  • b***@qq.com (作者)

    感谢提醒,我去添加沙盒测试员的时候发现。可以通过点击‘编辑’,然后清除这个账号的购买历史,之后就能一个账号进行反复测试

    2022-11-14 11:52

该问题目前已经被锁定, 无法添加新回复

  • 标题 / 粗斜体
  • 代码片段
  • 超链接 / 图片 / 视频
  • 列表 / 引用

文章内容较多时,可以用标题分段 :

## 大标题 
### 小标题

斜体 / 粗体 :

**粗体** 
*斜体*
***粗斜体***

代码片段 :

``` javascript
代码片段
```

超链接 :

[链接文字](链接地址) 例: [百度](http://www.baidu.com)

图片 :

![图片说明](图片地址) 例: ![百度logo](http://www.baidu.com/img/bdlogo.gif)

视频 :

!![视频说明](视频地址) 例: !![优酷视频](http://youku.com)

有序列表 :

1. 123
2. 123
3. 123

无序列表 :

- 123
- 123
- 123

引用 : ( 双回车后结束引用 )

> 引用内容
引用内容
引用内容