这篇文章主要讲解了“JavaScrip怎么安全使用Payment Request api”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“JavaScrip怎么安全使用Pay
这篇文章主要讲解了“JavaScrip怎么安全使用Payment Request api”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“JavaScrip怎么安全使用Payment Request API”吧!
Payment Request API提供了一个跨浏览器标准,允许您从客户那里收集付款、地址和联系信息。然后,您可以使用这些信息来处理他们的订单。
它还促进了浏览器和网站之间交换这些信息。这背后的基本思想是通过让用户轻松在浏览器中存储付款和联系信息来改善用户的在线购物体验。
Payment Request API仍在积极开发中,仅受现代浏览器的最后几个版本的支持。
在开始提出付款请求之前,您应该进行功能检测,以确保浏览器支持API:
if (window.PaymentRequest) { // Yes, we can use the API} else { // No, fallback to the checkout page window.location.href = '/checkout'}
请注意,您只能在超过https
服务的网站上使用# Payment Request API。
现在让我们看看这个有用的API是如何工作的。
付款请求始终通过使用PaymentRequest()
构造函数创建PaymentRequest
的新对象来启动。构造函数接受两个强制性参数和一个可选参数:
paymentMethods
定义接受哪种付款方式。例如,您只能接受Visa和MasterCard信用卡。
options
是一个可选参数,用于向用户请求其他详细信息,例如姓名、电子邮件、电话等。
接下来,我们将创建一个仅包含所需参数的新付款请求。
const paymentMethods = [ { supportedMethods: ['basic-card'] }]const paymentDetails = { total: { label: 'Total Amount', amount: { currency: 'USD', value: 8.49 } }}const paymentRequest = new PaymentRequest(paymentMethods, paymentDetails)
Notice the supportedMethods
parameter in the paymentMethods
object. When it is set to basic-card
, both debit and credit cards of all networks will be accepted.
但您可以限制受支持的网络和卡片类型。例如,只有以下Visa、MasterCard和Discover信用卡被接受:
const paymentMethods = [ { supportedMethods: ['basic-card'], data: { supportedNetworks: ['visa', 'mastercard', 'discover'], supportedTypes: ['credit'] } }]// ...
传递给PaymentRequest
构造函数的第二个参数是付款详细信息对象。它包含订单总数和可选的显示项目数组。total
参数必须包括一个label
参数和一个带有currency
和value``amount
参数。
您还可以添加其他显示项目,以提供总数的高级细分:
const paymentDetails = { total: { label: 'Total Amount', amount: { currency: 'USD', value: 8.49 } }, displayItems: [ { label: '15% Discount', amount: { currency: 'USD', value: -1.49 } }, { label: 'Tax', amount: { currency: 'USD', value: 0.79 } } ]}
displayItems
参数并不意味着显示一长长的项目列表。由于移动设备上浏览器的支付用户界面的空间有限,您应该使用此参数仅显示顶级字段,如小计、折扣、税费、运费等。
Keep in mind that the PaymentRequest
API does not perfORM any calculations. So your WEB application is responsible for providing the pre-calculated total
amount.
您可以使用第三个可选参数向用户请求其他信息,例如姓名、电子邮件地址和电话号码:
// ...const options = { requestPayerName: true, requestPayerPhone: true, requestPayerEmail: true}const paymentRequest = new PaymentRequest(paymentMethods, paymentDetails, options)
默认情况下,所有这些值都是false
的,但将它们中的任何一个值为true``options
对象中将导致付款UI中的额外步骤。如果用户已经在浏览器中存储了这些详细信息,它们将被预先填充。
创建PaymentRequest
对象后,您必须调用show()
方法向用户显示付款请求UI。
show()
方法返回一个承诺,如果用户成功填写了详细信息,则该promise将使用aPaymentResponse对象解决。如果出现错误或用户关闭用户界面,则承诺将被拒绝。
// ...const paymentRequest = new PaymentRequest(paymentMethods, paymentDetails, options)paymentRequest .show() .then(paymentResponse => { // close the payment UI paymentResponse.complete().then(() => { // TODO: call REST API to process the payment at the backend server // with the data from `paymentResponse`. }) }) .catch(err => { // user closed the UI or the API threw an error console.log('Error:', err) })
使用上述代码,浏览器将向用户显示付款用户界面。一旦用户填写了详细信息并单击“Pay”按钮,您将在show()
承诺中收到PaymentResponse
对象。
当您调用PaymentResponse.complete()
方法时,付款请求UI会立即关闭。此方法返回一个新的承诺,以便您可以使用收集的信息调用后端服务器并处理付款。
如果您想在付款用户界面显示旋转器时致电后端服务器处理付款,您可以延迟调用complete()
)。
Let's create a mock function for payment processing with the backend server. It takes paymentResponse as a parameter and returns a promise after 1.5 seconds that resolves to a JSON object:
const processPaymentWithServer = paymentResponse => { return new Promise((resolve, reject) => { setTimeout(() => { resolve({ status: true }) }, 1500) })}//...paymentRequest .show() .then(paymentResponse => { processPaymentWithServer(paymentResponse).then(data => { if (data.status) { paymentResponse.complete('success') } else { paymentResponse.complete('fail') } }) }) .catch(err => { console.log('Error:', err) })
在上面的示例中,浏览器支付UI将显示一个处理屏幕,直到processPaymentWithServer()
方法返回的承诺得到解决。我们还使用“成功”和“失败”字符串来告诉浏览器交易结果。如果您调用complete('fail')
浏览器将向用户显示错误消息。
如果您想取消付款请求,因为没有活动或任何其他原因,您可以使用PaymentRequest.abort()
方法。它立即关闭付款请求UI,并拒绝show()
承诺。
// ...setTimeout(() => { paymentRequest .abort() .then(() => { // aborted payment request console.log('Payment request aborted due to no activity.') }) .catch(err => { // error while aborting console.log('abort() Error: ', err) })}, 5000)
感谢各位的阅读,以上就是“JavaScrip怎么安全使用Payment Request API”的内容了,经过本文的学习后,相信大家对JavaScrip怎么安全使用Payment Request API这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!
--结束END--
本文标题: JavaScrip怎么安全使用Payment Request API
本文链接: https://lsjlt.com/news/344695.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0