获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
我也遇到了同样的问题,请问怎么解呀
未开通过支付功能的用户,拉起支付,跳转绑定银行卡页面,点击返回按钮,返回页面后卡死/** * 拉起支付 */ const requestWxPayment = (response: any, succFn: any, errFn: any) => { wx.requestPayment({ ...response, success: () => { succFn(); }, fail: (err) => { wx.showToast({ title: '取消支付', icon: 'none', }); console.error('pay fail', err) errFn(); }, }); };
05-11