您好我正在使用Meteor / Ionic创建应用程序。 该应用程序的最后一步是转到外部付款页面(付款提供商API收到的网址),并在付款完成后返回应用程序。
两个问题 - 访问付款页面时,我可以通过重定向网址。我可以根据特定的URL重定向回应用程序吗? - 如果没有,我可以根据WebView的关闭返回应用程序吗?
客户代码
this.buyGift = () => {
this.call('newPayment', this.gift, (err, result) => {
this.result = result;
var paymentWindow = window.open(track.Payment, '_self');
paymentWindow.addEventListener('exit', function(event) {
//How do I get back to the application?
});
});
}

服务器端
'newPayment' : function(gift, track){
return mollie.payments.create({
amount: gift.price,
description: gift.name,
redirectUrl:
//Can I go back to the application based upon an URL?
}}

非常感谢提前。