angular.js - angularjs $http.post 后 不跳转
ringa_lee
ringa_lee 2017-05-15 17:05:54
0
3
655

非常菜鸟级别的一个问题哈:

为了接入支付宝的即时到账接口,demo给的例子是:

我使用$http的post()方法向alipayapi.php提交post请求:

$scope.goPay=function(){ $http({ method : 'POST', //url : 'php/submitOrder.php', url : 'php/secback/alipay/alipayapi.php', data : $.param({ 'oid' : $stateParams.oid,'checkmethod': $scope.checkmethod}), headers : { 'Content-Type' : 'application/x-www-form-urlencoded' } }).success(function(data) { console.log(data); }); };

alipayapi.php实际上会拼接一个html,这个html包含一个表单并且会自动提交。问题是,官方的demo是会自动跳转到支付宝网关,但使用$http的post()方法就不会跳转....
附,console.log(data)的信息:

其实我觉得我就是要一个方法,能把后来传回来的HTML执行一遍就行了....直接eval()貌似不行

ringa_lee
ringa_lee

ringa_lee

reply all (3)
Ty80

The form submitted by ajax POST cannot automatically jump, use form+new window

    给我你的怀抱

    Ajax returns the spliced url. When ajax returns success, use location.href=url to jump.

      为情所困

      To put it simply, this kind of demand is not easy to complete with ajax. Just open a new window to pay.

        Latest Downloads
        More>
        Web Effects
        Website Source Code
        Website Materials
        Front End Template
        About us Disclaimer Sitemap
        php.cn:Public welfare online PHP training,Help PHP learners grow quickly!