如何在stripe,angular5中添加付款表单字段

时间:2018-03-24 22:32:14

标签: angular stripe-payments

我的付款表格上只有卡号,cvc,有效期和邮政编码。 我想添加帐单名称,帐单邮寄地址等字段。因此,客户可以添加更多信息。

我该如何解决这个问题?

ngAfterViewInit() {
    this.card = this.pmt.elements.create('card');
    this.card.mount(this.cardElement.nativeElement);
}

我尝试过这样的事情......这不是因为它不起作用的方式。

 ngAfterViewInit() {
    this.card = this.pmt.elements.create('card', {
      billing_name: true
    });
   this.card.mount(this.cardElement.nativeElement);
}

1 个答案:

答案 0 :(得分:0)

这对我非常有帮助。

您应该遵循Stripe Elements文档,该文档用于在条带支付中添加额外的表单字段。