贝宝按钮-在弹出窗口打开之前添加操作

时间:2018-08-09 21:29:33

标签: javascript paypal alert sandbox disable

我正在将Paypal按钮添加到我的网站。但是,我想做一些需要用户在按钮起作用之前填写某些信息(地址框)的事情。如果用户已填写信息,则单击“贝宝”按钮时,它将提示用户登录贝宝(正常流程)。否则,用户会收到alertalert('Please choose a delivery address');

我一直在尝试做以下事情:

$('.paypal-button').on( "click", function() {
  alert('Please choose a delivery address');
});

甚至尝试禁用该按钮(尽管这不是最佳选择),但基于this other answer发现它无法使用:

$('.paypal-button').prop("disabled",true);

以下是Paypal沙箱代码(您需要一个真实的沙箱凭据):

<!DOCTYPE html>

<head>
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <script src="https://www.paypalobjects.com/api/checkout.js"></script>
</head>

<body>
    <div id="paypal-button-container"></div>

    <script>
        paypal.Button.render({

            env: 'sandbox', // sandbox | production

            // PayPal Client IDs - replace with your own
            // Create a PayPal app: https://developer.paypal.com/developer/applications/create
            client: {
                sandbox:    'ABCDEcFpQtjWTOUtWKbyN_bDt4OgqatestlewfBP4-33iV8e1GWU6liB2XYZ',
                production: '<insert production client id>'
            },

            // Show the buyer a 'Pay Now' button in the checkout flow
            commit: true,

            // payment() is called when the button is clicked
            payment: function(data, actions) {

                // Make a call to the REST api to create the payment
                return actions.payment.create({
                    payment: {
                        transactions: [
                            {
                                amount: { total: '0.01', currency: 'USD' }
                            }
                        ]
                    }
                });
            },

            // onAuthorize() is called when the buyer approves the payment
            onAuthorize: function(data, actions) {

                // Make a call to the REST api to execute the payment
                return actions.payment.execute().then(function() {
                    window.alert('Payment Complete!');
                });
            }

        }, '#paypal-button-container');

    </script>
</body>

2 个答案:

答案 0 :(得分:1)

new docs提供了onInitonClick选项,但是正如here所讨论的,您不能通过脚本触发弹出窗口,因为它会被阻止。因此,异步方法是错误的,因为它简要显示了验证失败时的弹出窗口。 我通过这种方式实现了同步验证:

onInit: function(data, actions) {
  // Disable the buttons
  actions.disable();
  // Listen for changes
  $("input[aria-required=true]").change(function() {
      var valid=true;
      $("input[aria-required=true]").each(function(){
          if($(this).val()=="") valid=false;
      });
      if (valid==true) {
        actions.enable();
      } else {
        actions.disable();
      }

  });       
}

我试图通过侦听器使用验证(wp cf7的内置功能),但似乎没有办法。

答案 1 :(得分:0)

您可以使用PayPal按钮的validate:onClick:属性。 example on the demo site的工作方式。