- 插件支付打开支付页后取消支付返回如何获取取消支付的回调?
https://developers.weixin.qq.com/miniprogram/dev/framework/plugin/functional-pages/request-payment.html 用这种方式进行打开收银页返回后怎么获取取消支付回调? wx.requestPluginPayment({ fee, paymentArgs, currencyType, version, success(r) { console.log(r) }, fail(e) { console.error(e) } })
08-09 - 如何调试支付功能页函数调用?
在测试插件的功能,支付功能页显示的金额为“0.00”,怀疑是支付功能页函数没有得到调用,目前在真机上有如下报错: 报错1:Cannot read property 'initScl' of undefined 报错2:requestPluginPayment:fail callMiniProgramFunction:File not found 按照https://developers.weixin.qq.com/community/develop/article/doc/00088464a902607b55019066e61013这里所说,我在调试时小程序和插件的appId不一致 https://developers.weixin.qq.com/miniprogram/dev/framework/plugin/functional-pages/request-payment.html
06-12