我正在尝试使用phonegap插件在我的应用程序中进行应用内购买https://github.com/phonegap/phonegap-plugins/tree/master/iPhone/InAppPurchaseManager
但是在沙箱测试中我遇到了以下错误 plugins.inAppPurchaseManager.updatedTransactionCallback.apply(plugins.inAppPurchaseManager,[“PaymentTransactionStateFailed”,0,“无法连接到iTunes Store”,“”,“”,“”])
然后应用程序被击中......任何人都可以帮我解决这个问题吗?
答案 0 :(得分:2)
看一下InAppPurchaseManager.js,你会看到InAppPurchaseManager.prototype.updatedTransactionCallback的第一次调用是:
警报(状态);
将其替换为PhoneGap的首选:
navigator.notification.alert(状态);
它应该很清楚。