将输入值和变量传递给POST的最佳做法?

时间:2017-01-18 06:16:45

标签: php stripe-payments

我会尽量保持简洁 我正在使用Stripe JS处理付款。
我的表格代码如下:

<form id="payment-form" action="components/charge.php" method="POST" onSubmit={this.submitFormHandler.bind(this)}>
    <div id="payment-errors" className="payment-errors"></div>
    <label>Name</label>
    <input className="first-name" id="first_name" type="text" size="50" autoComplete="off" data-stripe="first_name"/>
    <input className="card-number" type="text" size="20" autoComplete="off" />
    <input className="card-cvc" type="text" size="4" autoComplete="off" />
    <input className="card-expiry-month" type="text" size="2" />
    <input className="card-expiry-year" type="text" size="4" />
    <input type="submit" id="submitBtn" className="submit" value="Submit Payment" />
</form>

处理表单并向用户收费的代码:

if (!error) {
    // Get the Stripe token:
    Stripe.card.createToken({
        number: ccNum,
        cvc: cvcNum,
        exp_month: expMonth,
        exp_year: expYear
    }, function(status, response){
        console.log(response);
        if (response.error) {
            this.reportError(response.error.message);
        } else { // No errors, submit the form.
            // Get a reference to the form:
            var paymentForm = $("#payment-form");
            // Get the token from the response:
            var token = response.id;
            // Add the token to the form:
            paymentForm.append('<input type="hidden" name="stripeToken" value="' + token + '" />');
            paymentForm.append('<input type="hidden" name="first_name" value="' + firstName + '" />');
            // Submit the form:
            paymentForm.get(0).submit();
        }
    });
 }

我已添加paymentForm.append('<input type="hidden" name="first_name" value="' + firstName + '" />');以保存first_name输入值,这样当我向用户收费时,我可以看到更多用户信息。
我缩短了它,完整版有地址,邮政编码,电子邮件等。

charge.php代码如下:

 <?php
 require_once('vendor/autoload.php');
 \Stripe\Stripe::setApiKey(<MY_KEY_HERE>);
 $token = $_POST['stripeToken'];
 $first_name = $_POST['first_name'];

 try{
     \Stripe\Stripe::setApiKey(<MY_KEY_HERE>);
     $customer = \Stripe\Customer::create(array(
         "source" => $token,
         "description" => "description here",
         "email" => "tester@testemail.com",
         "shipping" => array(
             "name" => "test",
             "address" => array(
                "line1" => "123 Fake St",
                "city" => "Melbourne",
                "country" => "Australia",
                "postal_code" => "6969"
             )
          )
       )
    );
    // Charge the Customer instead of the card
    \Stripe\Charge::create(array(
        "amount" => 1500, // amount in cents, again
        "currency" => "aud",
        "description" => "tester@tester",
        "customer" => $customer->id
    ));
} catch(\Stripe\Error\Card $e) {
    echo  "Your card has been declined";
}
?>

此逻辑可以运行并添加客户并按预期收费。我只是不知道保存first_name输入值的方法是否是最佳做法。我试图在Stripe.card.createToken函数中添加输入值,但它不起作用,我在POST进程中得到一个未定义的变量。

我找不到将输入值/变量发布到POST的其他方法。

POST输入值和变量的最佳做法是什么?

非常感谢任何帮助 由于

1 个答案:

答案 0 :(得分:1)

您不能将first_name参数作为参数传递给Stripe.card.createToken,因为此调用不需要这样的参数。 (持卡人的完整名称有一个可选的name参数。)

向服务器发送(非PCI敏感)字段的最简单方法是向该字段添加name属性,以便将其提交给您的服务器,而无需将其重新创建为隐藏的领域。

基本上:

  1. 非卡相关输入字段应具有name="..."属性。与卡相关的输入字段(否则他们会被提交到您的服务器,否定令牌化的目的并使您不符合PCI SAQ A的条件)。

  2. 在表单的提交处理程序中,使用Stripe.js创建令牌,并将该令牌作为隐藏字段添加到表单中。

  3. 提交表格。浏览器会将每个指定字段发送到表单的action网址。