-1

我已经从https://github.com/phonegap/phonegap-plugins/tree/master/iPhone/InAppPurchaseManager集成了应用内购买。

我正在使用 xcode4.3 和 cordova-1.5.0。

我收到错误:

window.plugins.inAppPurchaseManager 未定义

所以我无法调用 inAppPurchaseManager 方法,如 requestProductData 等。

4

1 回答 1

0

“window.plugins.inAppPurchaseManager未定义”表示 window.plugins.inAppPurchaseManager 变量未定义。它在InAppPurchaseManager.js中定义。您似乎忘记在html 代码中包含文件 InAppPurchaseManager.js :

<script type="text/javascript" src="js/InAppPurchaseManager.js"></script>
于 2013-03-20T15:34:54.423 回答