我只是想通过以下代码验证浏览器是否支持苹果支付。但它在 safari (ipad) / macbook 上出现错误。
ApplePaySession' is not defined no-undef
按照代码,我用 ReactJs 编写。
if (window.ApplePaySession) {
if (ApplePaySession.canMakePayments) {
alert('hi, I can do ApplePay.....')
}
但给出未定义的错误!
如果有人可以帮忙?为什么 ApplePaySession 未定义?我们需要导入 ApplePaySession 吗?还是我们需要添加任何sdk?