我正在测试 Apple Pay JS,我让它完全正常工作。但是,我想用其他一些字段(例如用户名或地址)填充确认弹出窗口(要求接受购买的弹出窗口)。文档说可以做到,但没有例子。这是我所指的代码:
var request = {
countryCode: 'US',
currencyCode: 'USD',
supportedNetworks: ['visa', 'masterCard'],
merchantCapabilities: ['supports3DS'],
total: { label: 'Your Label', amount: '10.00' },
}
var session = new ApplePaySession(1, request);