我开发了一个离子应用程序,并在其上包含了Stripe付款。当我使用ios手机付款时,它会打开一个数字键盘,以便我输入卡信息。
但是此键盘没有“输入”按钮,并且当我在键盘外部单击时,它没有关闭。
我不知道该怎么办
html:
<ion-content>
<form>
[...]
<div id="payment">
<h1>Paiement</h1>
<button id="stripe-button" class="bigButton" (click)="openStripePayment()">Payer par carte</button>
</div>
</form>
</ion-content>
ts:
handler: any = null;
ionViewDidLoad() {
this.handler = StripeCheckout.configure({
[...]
})
}
openStripePayment(){
this.handler.open({
name: '...',
description: '...',
currency: 'eur',
amount: ...
});
}