如何在 Stripe Checkout 中禁用默认付款方式(信用卡)

How to disable default payment method (Credit Card) in Stripe Checkout

我只需要一种支付方式(支付宝)。但我无法使用 Stripe Checkout(信用卡)禁用默认付款方式。当然,我读过 documentation,但我不知道我该怎么做。

这是我的代码。

var handler = StripeCheckout.configure({
    key: 'public_key',
    alipay: true,
    locale: false,
    currency: "usd",
    token: function(token) {
        // Use the token to create the charge with a server-side script.
        // You can access the token ID with `token.id`
    }
});

handler.open({
    name: 'example.com',
    description: 'AliPay Payment',
    amount: 10000
});

谢谢!

无法禁用 Checkout 的默认(卡片)区域。

如果您正在寻找付款表单的更大可定制性,我会看看 Stripe。js/Elements 和来源 API。您可以使用来源 生成支付宝来源,将用户重定向到支付宝以授权付款,然后 return 他们到您的网站,https://stripe.com/docs/sources/alipay