提交 74b3fa86 编写于 作者: zhaofengliang920817's avatar zhaofengliang920817

调整uni-virtualPayment页面示例。

上级 c0a48236
...@@ -14,20 +14,20 @@ ...@@ -14,20 +14,20 @@
@click="requestVirtualPayment(item)">{{item.name}}</button> @click="requestVirtualPayment(item)">{{item.name}}</button>
<text> <text>
\nrestoreCompletedTransactions api 适用于非消耗性类型、自动续期订阅类型、非自动续期订阅类型产品的购买。\n\n \nrestoreTransactions api 适用于非消耗性类型、自动续期订阅类型、非自动续期订阅类型产品的购买。\n\n
1. 非消耗性类型: 返回每个已购买的非消耗性类型产品的购买记录;\n 1. 非消耗性类型: 返回每个已购买的非消耗性类型产品的购买记录;\n
2. 自动续期订阅类型: 返回每个已购买的自动续期订阅类型产品的最新购买记录,沙盒账号最多可自动续订 12 次;\n 2. 自动续期订阅类型: 返回每个已购买的自动续期订阅类型产品的最新购买记录,沙盒账号最多可自动续订 12 次;\n
3. 非自动续期订阅类型: 返回每个已购买的非自动续期订阅类型产品的最新购买记录, 该类型订阅可以连续多次购买,开发者需要自己的后台计算产品过期的时间。\n 3. 非自动续期订阅类型: 返回每个已购买的非自动续期订阅类型产品的最新购买记录, 该类型订阅可以连续多次购买,开发者需要自己的后台计算产品过期的时间。\n
Note: 不能用来恢复消耗性类型的购买记录。 Note: 不能用来恢复消耗性类型的购买记录。
</text> </text>
<button style="margin-top: 20px;" type="primary" @click="restoreCompletedTransactions">恢复购买订单列表</button> <button style="margin-top: 20px;" type="primary" @click="restoreTransactions">恢复购买订单列表</button>
<text> <text>
\ngetUnfinishedTransactions api 适用于获取未完成的各种类型产品的购买记录(用来防止丢单)。\n\n \ngetUnfinishedTransactions api 适用于获取未完成的各种类型产品的购买记录(用来防止丢单)。\n\n
1. 比如用户点击购买已经付款成功,但因网络、手机没电关机等特殊情况,Apple IAP 1. 比如用户点击购买已经付款成功,但因网络、手机没电关机等特殊情况,Apple IAP
没有返回客户端对应的购买凭证,从而导致无法finish该交易导致的丢单,可以在需要的地方调用该api获得此类未finished的交易记录; \n 没有返回客户端对应的购买凭证,从而导致无法finish该交易导致的丢单,可以在需要的地方调用该api获得此类未finished的交易记录; \n
2. 针对消耗性类型产品交易,只能通过该api获取未finished的交易,防止丢单;\n 2. 针对消耗性类型产品交易,只能通过该api获取未finished的交易,防止丢单;\n
3. 对于其他类型产品未finished交易, 不仅可以通过该api获取,也可以通过restoreCompletedTransactions api (也可获取已经finished的交易)获取; 3. 对于其他类型产品未finished交易, 不仅可以通过该api获取,也可以通过restoreTransactions api (也可获取已经finished的交易)获取;
</text> </text>
<button style="margin-top: 20px; margin-bottom: 50px;" type="primary" <button style="margin-top: 20px; margin-bottom: 50px;" type="primary"
@click="getUnfinishedTransactions">获取未结束的订单列表</button> @click="getUnfinishedTransactions">获取未结束的订单列表</button>
...@@ -44,11 +44,11 @@ ...@@ -44,11 +44,11 @@
data() { data() {
return { return {
productList: [] as PayItem[], productList: [] as PayItem[],
virtualPaymentContext: Object virtualPaymentManager: Object
} }
}, },
onLoad: function () { onLoad: function () {
this.virtualPaymentContext = uni.createVirtualPaymentContext() this.virtualPaymentManager = uni.getVirtualPaymentManager()
this.initProductList() this.initProductList()
}, },
methods: { methods: {
...@@ -140,7 +140,7 @@ ...@@ -140,7 +140,7 @@
icon: 'success' icon: 'success'
}) })
this.virtualPaymentContext.finishTransaction({ this.virtualPaymentManager.finishTransaction({
transaction: res.apple, transaction: res.apple,
success: (r) => { success: (r) => {
console.log("关单成功, 该productId= " + res.apple?.productId) console.log("关单成功, 该productId= " + res.apple?.productId)
...@@ -160,13 +160,13 @@ ...@@ -160,13 +160,13 @@
} }
}) })
}, },
restoreCompletedTransactions() { restoreTransactions() {
uni.showLoading({ uni.showLoading({
title: "", title: "",
mask: true mask: true
}); });
this.virtualPaymentContext.restoreCompletedTransactions({ this.virtualPaymentManager.restoreTransactions({
success: (res) => { success: (res) => {
uni.hideLoading() uni.hideLoading()
console.log("restore成功的交易个数:" + res.transactions.length) console.log("restore成功的交易个数:" + res.transactions.length)
...@@ -197,7 +197,7 @@ ...@@ -197,7 +197,7 @@
mask: true mask: true
}); });
this.virtualPaymentContext.getUnfinishedTransactions({ this.virtualPaymentManager.getUnfinishedTransactions({
success: (res) => { success: (res) => {
uni.hideLoading() uni.hideLoading()
console.log("获取未结束的订单列表个数:" + res.transactions.length) console.log("获取未结束的订单列表个数:" + res.transactions.length)
...@@ -212,7 +212,7 @@ ...@@ -212,7 +212,7 @@
//TODO: 开发者server验证逻辑 //TODO: 开发者server验证逻辑
//经过开发者server验证成功后请结束该交易 //经过开发者server验证成功后请结束该交易
this.virtualPaymentContext.finishTransaction({ this.virtualPaymentManager.finishTransaction({
transaction: transaction, transaction: transaction,
success: (r) => { success: (r) => {
console.log("关单成功, 该productId= " + transaction.productId) console.log("关单成功, 该productId= " + transaction.productId)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册