使用handleCardPayment将多个Stripe自定义元素添加到PaymentIntent

时间:2019-04-06 07:41:06

标签: angular stripe-payments stripe-payout

我已经尝试过,当我添加多个条纹元素时,条纹返回错误。当您发送一个带有elements.create('card')的卡片元素时,它可以工作,但是当我制作自定义元素并将其发送到handleCardPayment时,它就无法工作。是否可以像下面的代码中那样将多个条带自定义元素发送到handleCardPayment方法?

await this.stripe.handleCardPayment(
      clientSecret, this.cardNumber, this.cardExp, this.cardCvc, {
        source_data: {
          owner: { name: cardholderName.value }
        }
      }
    )

0 个答案:

没有答案