付款请求 API - Safari 上的基本卡
Payment Request API - Basic Card on Safari
我正尝试在我正在进行的项目中实施付款请求 API。我只使用 basic-card
付款方式。当我调用 canMakePayment()
时,它在 Chrome 中正确解析为 true
,但在 Safari 中它永远不会解析为 true
。然后我在 webkit blog,
中读到一些有趣的东西
Safari only supports the Apple Pay payment method, but other browsers
might support additional payment methods.
如果这就是我想的意思,那么我就不能在 Safari 中使用 basic-card
付款方式。仅限 Apple Pay。
有人可以解释一下吗?
确实如此。 Safari 目前只支持 Apple Pay。不幸的是,它不支持基本卡:(
https://webkit.org/blog/8182/introducing-the-payment-request-api-for-apple-pay/
我正尝试在我正在进行的项目中实施付款请求 API。我只使用 basic-card
付款方式。当我调用 canMakePayment()
时,它在 Chrome 中正确解析为 true
,但在 Safari 中它永远不会解析为 true
。然后我在 webkit blog,
Safari only supports the Apple Pay payment method, but other browsers might support additional payment methods.
如果这就是我想的意思,那么我就不能在 Safari 中使用 basic-card
付款方式。仅限 Apple Pay。
有人可以解释一下吗?
确实如此。 Safari 目前只支持 Apple Pay。不幸的是,它不支持基本卡:( https://webkit.org/blog/8182/introducing-the-payment-request-api-for-apple-pay/