我有一个结帐表单,用于将购物车详细信息发送到使用Symfony和Payum的PayPal等不同的支付网关。
现在我正在尝试将付款详细信息发送到条带以防用户选择条带结帐选项。目前与条带的集成工作正常,我可以发送付款并从条带获得响应,但为了将信用卡详细信息发送到条带我被重定向到capture
我看到"用卡支付"按钮,如果我点击它,弹出窗口似乎输入信用卡详细信息
我想要做的是允许用户在结帐表单上添加信用卡详细信息而不是弹出窗口中显示的表单。是否有可能实现这一目标?如何使用自己的表单将数据发送到条带而不是使用条带弹出窗口?
答案 0 :(得分:2)
这是条纹在Javascript中的示例:
包括Stripe.js
<script type="text/javascript" src="https://js.stripe.com/v2/"></script>
设置您的可发布密钥:
Stripe.setPublishableKey('YOUR_PUBLISHABLE_KEY');
发送数据:
Stripe.card.createToken({
number: $('.card-number').val(),
cvc: $('.card-cvc').val(),
exp_month: $('.card-expiry-month').val(),
exp_year: $('.card-expiry-year').val()
}, stripeResponseHandler);
回复:
function stripeResponseHandler(status, response) {
var $form = $('#payment-form');
if (response.error) {
// Show the errors on the form
$form.find('.payment-errors').text(response.error.message);
$form.find('button').prop('disabled', false);
} else {
// response contains id and card, which contains additional card details
var token = response.id;
// Insert the token into the form so it gets submitted to the server
$form.append($('<input type="hidden" name="stripeToken" />').val(token));
// and submit
$form.get(0).submit();
}
}
有关详细信息,请查看此链接 https://stripe.com/docs/stripe.js
答案 1 :(得分:2)
Stripe Checkout就是这样设计的。你看到按钮点击它,填写所有必需的信息,然后点击它。
如果您想提前填写信用卡详细信息,可以这样做,但在这种情况下您必须使用
你必须通过这样的omnipay信用卡(better way is not implemented yet):
$命令 - &GT; setDetails(阵列( &#39;卡&#39; =&GT;新的CreditCard($ data), ));
$this->forward
代替重定向。由于信用卡未保存到数据库,因此您必须立即处理它们。 (example)