0
我正在使用stripecheckout.js處理我的網站上的付款。在stripecheckout.js中顯示自定義錯誤消息
我配置對象被髮送到條紋彈出如下:
stripeHandler = StripeCheckout.configure({
key: $scope.stripeKey,
image: 'img/logo.png',
locale: 'auto',
panelLabel: 'Pay',
color: 'black',
token: handleToken
});
其中handleToken是我的回調。 打開條紋彈出如下:
stripeHandler.open({name: //some name,
description: //some description,
amount: //some amount,
currency: //some currency
});
現在我想顯示在到期和CVV領域相關的錯誤自定義消息。 如何在條紋彈出窗口中傳遞這些消息。