【问题标题】:Getting Stripe Elements form to appear让 Stripe Elements 表单出现
【发布时间】:2017-11-29 10:56:04
【问题描述】:

我目前正在研究here 显示的示例

使用完全相同的 html css 和 javascript(我的个人测试代码除外)。来自 JS 的表单永远不会呈现。我留下的文件只显示提交按钮和“信用卡或借记卡”标签。我应该在评论部分添加一个输入吗?我不知道为什么在复制这个确切的例子时不会出现任何表格。

<div id="card-element">
      <!-- a Stripe Element will be inserted here. -->
    </div>

作为参考,这是我重构代码的方式。

HTML (index.html)

<script src="https://js.stripe.com/v3/"></script>
<script src="index.js" data-rel-js></script>
<link rel="stylesheet" type="text/css" href="index.css">

<form action="/charge" method="post" id="payment-form">
  <div class="form-row">
    <label for="card-element">
      Credit or debit card
    </label>
    <div id="card-element">
      <!-- a Stripe Element will be inserted here. -->
    </div>

    <!-- Used to display form errors -->
    <div id="card-errors" role="alert"></div>
  </div>

  <button>Submit Payment</button>
</form>

CSS (index.css)

/**
 * The CSS shown here will not be introduced in the Quickstart guide, but shows
 * how you can use CSS to style your Element's container.
 */
.StripeElement {
  background-color: white;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
}

.StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
  border-color: #fa755a;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}

JS (index.js)

// Create a Stripe client
var stripe = Stripe('pk_test_6pRNASCoBOKtIshFeQd4XMUh');

// Create an instance of Elements
var elements = stripe.elements();

// Custom styling can be passed to options when creating an Element.
// (Note that this demo uses a wider set of styles than the guide below.)
var style = {
  base: {
    color: '#32325d',
    lineHeight: '18px',
    fontFamily: '"Helvetica Neue", Helvetica, sans-serif',
    fontSmoothing: 'antialiased',
    fontSize: '16px',
    '::placeholder': {
      color: '#aab7c4'
    }
  },
  invalid: {
    color: '#fa755a',
    iconColor: '#fa755a'
  }
};

// Create an instance of the card Element
var card = elements.create('card', {style: style});

// Add an instance of the card Element into the `card-element` <div>
card.mount('#card-element');

// Handle real-time validation errors from the card Element.
card.addEventListener('change', function(event) {
  var displayError = document.getElementById('card-errors');
  if (event.error) {
    displayError.textContent = event.error.message;
  } else {
    displayError.textContent = '';
  }
});

// Handle form submission
var form = document.getElementById('payment-form');
form.addEventListener('submit', function(event) {
  event.preventDefault();

  stripe.createToken(card).then(function(result) {
    if (result.error) {
      // Inform the user if there was an error
      var errorElement = document.getElementById('card-errors');
      errorElement.textContent = result.error.message;
    } else {
      // Send the token to your server
      stripeTokenHandler(result.token);
    }
  });
});

这将显示以下内容...

【问题讨论】:

    标签: javascript dom stripe-payments


    【解决方案1】:

    将 javascript 包装在 onload 事件处理函数中。
    或者在表单声明后加上&lt;script&gt; 标签。

    【讨论】:

      猜你喜欢
      • 2022-01-06
      • 2019-10-02
      • 1970-01-01
      • 2021-08-25
      • 1970-01-01
      • 2022-01-22
      • 2018-06-26
      • 2018-09-24
      • 2018-01-16
      相关资源
      最近更新 更多