ApplePay canMakePaymentsWithActiveCard Promise 在 Mac Safari 上返回 false,但在 iPhone Safari 上返回 true。canMakePayments在两者上都返回 true。我正在使用带有 Apple 提供的测试信用卡的沙盒 Apple 开发人员帐户。知道为什么canMakePaymentsWithActiveCard在 Mac Safari 上返回 false 吗?
if (window.ApplePaySession) {
// I'm not posting actual merchantIdentifier due to security reasons
var merchantIdentifier = 'my unique identifier';
var promise = ApplePaySession.canMakePaymentsWithActiveCard(merchantIdentifier);
promise.then(function (canMakePayments) {
if (canMakePayments)
// For some reason false on Mac Safari
});
}