嗨我在同一台服务器上调用ajax请求,如下所示,在我的离子应用程序中支付流程时存储一些数据。
//Test code of device
var formData = {
payresponseData: response
};
$.ajax({
url: "https://app.apiptl.staging.edubold.com/app_dev.php/payment/ajax",
type: "post",
data: formData,
success: function(data,text) { //alert(data);//return false;
},
error: function (request, status, error) {//return false;
alert(request.responseText);alert(request.error);
}
});
//Hold window for a while so that ajax will save the data before user hit any other activities while payment flow
setTimeout(function(){ window.close() }, 9000);
}
在它工作正常之前,但突然它的返回状态每次都取消。我没有找到任何方法来确定问题,有人可以帮我解决这个问题。