0
私はストライプのカスタムインテグレーションを使用していますが、その例ではイベントリスナーを追加していますが、JavaScriptのコードでは読み飛ばしのインジケータがない誰かがそれを閉じたときに消えます。ここでストライプチェックアウトローディングインジケータが消えない
は私のコードです:モーダルのためのxをクリックすると
var handler = StripeCheckout.configure({
key: 'tests',
image: 'https://stripe.com/img/documentation/checkout/marketplace.png',
locale: 'auto',
token: function(token) {
// You can access the token ID with `token.id`.
// Get the token ID to your server-side code for use.
},
closed: function() {
// Close Checkout on page navigation:
closehandler();
}
});
handler.open({
name: 'Jungle Exchange',
description: 'Get your Amazon On!',
amount: amount
});
function closehandler() {
handler.close();
}
、ロードのアイコンが画面の中央から消え、すべてを重ねていません。何かご意見は?
ありがとうございます!