我正在将我的AngularJS应用程序与支付网关集成,该网关要求提交表单以启动流程以收集用户的信用卡详细信息。
流程如下:
为了使这个过程起作用,我需要在我从onsubmit返回true或false之前返回我的服务器,并允许提交表单。
使用promises($ q)的所有示例最终会导致使用回调的代码。如何通过同步调用实现上述流程,还是有其他方法可以实现我的要求?
function allowSubmit() {
var scope = angular.element(document.querySelector( '#bookingForm' )).scope();
try {
var success = scope.createPayment();//createPayment is a method on my controller I need to synchronously call my backend with
return success;
} catch (e) {
//log/alert
return false;
}
}
<form id="bookingForm" name="bookingForm" novalidate action=" https://www.example.com/xyz/process.trans" method="POST" onsubmit="return allowSubmit();" >
...
<button type="submit" class="btn btn-success btn-lg pull-right">Payment</button>
...
</form>
答案 0 :(得分:2)
解决方案看起来是:创建没有操作或方法的表单,然后设置它们并在控制器中从服务器回调提交。
<form id="bookingForm" name="bookingForm" novalidate >
...
<button class="btn btn-success btn-lg pull-right" ng-click="createPaymentAndNavigate(bookingForm.$valid)">Payment</button>
...
</form>
//In server callback on controller
var bookingForm = document.getElementById('bookingForm')
bookingForm.action = "https://www.example.com/xyz/process.trans";
bookingForm.method = "POST";
bookingForm.submit();