Paypal with angularjs $ http.post请求

时间:2014-01-29 13:58:42

标签: javascript angularjs paypal angular-http

这是购买东西的标准paypal形式。

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="you@youremail.com">
<input type="hidden" name="item_name" value="Item Name">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="amount" value="0.00">
<input type="image" src="http://www.paypal.com/en_US/i/btn/x-click-but01.gif" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
</form>

我不想要这个表单,我想用angularJS做这个:

<button ng-click="checkOut()" class="btn btn-default">Buy</button>

this.checkOut = function () {
            var data = {
               ... // handle all data
            };

            $http.post('https://www.paypal.com/cgi-bin/webscr', data).success(function (data) {
                console.log("success " + data);
            }).error(function (data) {
                console.log("error " + data);
            });
        }

这给了我一个错误:

  

XMLHttpRequest无法加载https://www.paypal.com/cgi-bin/webscr。该   请求被重定向到“https://www.paypal.com/home”,即   不允许需要预检的跨领域请求。

任何建议,怎么做angularJS,没有表格?

1 个答案:

答案 0 :(得分:3)

PayPal目前不支持CORS,因此无法使用$http向PayPal发帖。