3

我正在考虑将 Apple Pay 集成到我的结帐页面中。如何通过验证 ApplePaySession 类是否存在来检查 Apple Pay JS API 在浏览器中是否可用。

当我给出条件时,

if (window.ApplePaySession && ApplePaySession.canMakePayments()){}

它显示错误,即;"Property 'ApplePaySession' does not exist on type 'Window & typeof globalThis'".

4

1 回答 1

0

在@component 上方添加以下内容:

declare var ApplePaySession: any;
于 2021-08-31T16:58:11.963 回答