所有我第一次使用条纹。我创建了一个条带帐户,并且我已切换到测试模式。我使用其简单的结帐并使用我帐户中的测试API密钥。但是,当我使用其虚拟信用卡号码进行收费时,它会成功收费,但我的帐户中没有显示任何内容。
<script src="https://checkout.stripe.com/checkout.js"></script>
<button id="customButton">Purchase</button>
<script>
var handler = StripeCheckout.configure({
key: the_key,
image: '/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.
}
});
$('#customButton').on('click', function(e) {
// Open Checkout with further options:
handler.open({
name: 'User1',
description: '2 widgets',
amount: 2000
});
e.preventDefault();
});
// Close Checkout on page navigation:
$(window).on('popstate', function() {
handler.close();
});
</script>
我不知道代码有什么问题,为什么我没有收到我的帐户的测试付款。帮助感谢。
答案 0 :(得分:-1)
由于我已经浏览了您的代码段,您需要点击服务器端方法进行条带检查。 我希望这会对你有所帮助。如果你面对任何事情,请告诉我。