我的付款表格上只有卡号,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);
}