私のeコマースウェブサイトにStripeを使用していますが、何らかの理由でエラーが発生していません。新しい顧客がストライプダッシュボードに登録されていません。ダッシュボードに新規顧客が登録されていないストライプ
ある時点では機能していましたが、もはや機能しませんでした。私はStripeウェブサイトのチュートリアルに従った。ここで
は、コードは次のとおりです。
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript">
Stripe.setPublishableKey('pk_test_Zr7oAROGNha5GcEdthCemM0a');
function stripeResponseHandler(status, response) {
var $form = $('#signupform');
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();
}
};
jQuery(function($) {
$('#signupform').submit(function(event) {
var $form = $(this);
// Disable the submit button to prevent repeated clicks
$form.find('button').prop('disabled', true);
Stripe.card.createToken($form, stripeResponseHandler);
// Prevent the form from submitting with the default action
return false;
});
});