Paypal Checkout.js-用于沙箱和生产的不同重定向URL

时间:2019-01-07 03:19:18

标签: paypal express-checkout

我正在使用Paypal和Checkout.js进行项目,我想知道如何根据当前环境设置不同的重定向URL。

这是我现在的代码:

paypal.Button.render({
// Set your environment
env: 'sandbox', // sandbox | production

...

payment: function (data, actions) {
    return actions.payment.create({
        payment: {
            transactions: [
                {
                amount: {
                    total: '<?php if(isset($_POST['prixService'])) {echo $_POST['prixService'];}?>',
                    currency: 'USD'
                }
            }
            ],
            redirect_urls: {
                return_url: '<?php if ($langue == $fr) {echo "http://localhost/index.php/fr/confirmation";} else {echo "http://localhost/index.php/en/confirmation";}?>'
            }
        }
    });
},

我想我的问题是如何在checkout.js函数和方法内创建if语句以验证当前环境是什么?

非常感谢!

0 个答案:

没有答案