gpt4 book ai didi

javascript - 布伦特里/Javascript : how to get transaction data (card and address) to prefill for customers with previous transactions?

转载 作者:行者123 更新时间:2023-12-03 00:51:06 24 4
gpt4 key购买 nike

我正在使用 Braintree 的托管字段和 Javascript。我成功地完成了注册并发送了付款随机数,但是我无法弄清楚如何让已在 Braintree 门户中订阅的用户显示其已预加载到 Braintree 托管字段中的信息(地址、信用卡的一部分等)。

最佳答案

托管字段中唯一的地址字段是邮政编码。您可能需要构建自定义表单来填充其他地址值。

您可以使用payment method lookup从您的服务器获取Vault数据。 。然后您可以在托管字段中预填充数据。

以下示例展示了如何使用过期日期的预填充值:

var storedCreditCardInformation = {   
// get this info from your server with a payment method lookup
month: '09',
year: '2017'
};

braintree.hostedFields.create({
client: clientInstance,
fields: {
expirationMonth: {
selector: '#expiration-month',
prefill: storedCreditCardInformation.month
},
expirationYear: {
selector: '#expiration-year',
prefill: storedCreditCardInformation.year
}
}
},
callback);

全面披露:我在布伦特里工作。如有其他问题,请随时联系 Braintree 支持 support@getbraintree.com。

关于javascript - 布伦特里/Javascript : how to get transaction data (card and address) to prefill for customers with previous transactions?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53037360/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com