我創建了代碼從條帶中獲取令牌的過程是當我點擊按鈕請求轉到js並在js中我要求來自條帶的令牌但問題是響應請求成功並且我使用jquery腳本請求令牌一次又一次地從條帶提交表單。Stripe Payment API一次又一次地發送令牌的請求
請幫忙,我在哪裏做錯了。
下面是HTML代碼
<form action="submit.php" id="payment-form" method="post">
<span class="payment-errors" style="color:red;font-size: 13px"></span>
<p>
<label for="">Card Number</label>
<input type="text" data-stripe="number">
</p>
<p>
<label for="">CVC</label>
<input type="text" data-stripe="cvc">
</p>
<p>
<label for="">Expiration mm/yyyy</label>
<input type="text" data-stripe="exp-month">
<input type="text" data-stripe="exp-year">
</p>
<button type="submit" name="submit">Submit</button>
</form>
這裏是我的js代碼
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="https://js.stripe.com/v2/"></script>
<script type="text/javascript">
Stripe.setPublishableKey('pk_test_J16ou3qOqkQG190gDIb0DjeE');
$('#payment-form').submit(function(e){
$form = $(this);
$form.find('button').prop('disabled' , true);
Stripe.card.createToken($form, function(status, response){
console.log(status);
console.log(response);
if(response.error){
$form.find('.payment-errors').html(response.error.message);
$form.find('button').prop('disabled' , false);
} else{
var token = response.id;
$form.append($('<input type="hidden" name="stripe-token" />').val(token));
$('#payment-form').submit();
}
});
return false;
});
</script>
這裏是我的conole圖像
不工作..表單不提交但請求不再發送 –
請求發送一次嗎?你得到令牌嗎?你有錯誤嗎?帶有標記的輸入是否會附加到表單中? – ishegg
是的,我得到了控制檯上的令牌,並且當您看到我們在表單中追加令牌的代碼,並且我想將表單提交到submit.php,但表單不在submit.php上發佈 –