我目前在我的项目中使用PhoneGap 2.7.0,并且代码在iOS上运行没有错误。当我尝试在android上运行相同的代码时(除了Cordova javascript文件,我知道它与Android不同)我'我收到此错误:
05-21 22:02:25.630 1663-1663/com.###.### D/Cordova: onPageFinished(file:///android_asset/www/index.html)
05-21 22:02:25.640 1663-1663/com.###.### D/CordovaLog: Uncaught Function required as first argument!
05-21 22:02:25.640 1663-1663/com.###.### E/Web Console: Uncaught Function required as first argument! at file:///android_asset/www/cordova-2.7.0.js:627
这是我在 index.html 中使用的 JavaScript:
<script type="text/javascript">
var app;
document.addEventListener("deviceready", function()
{
app = new AppWrapper();
}, false);
</script>
我不确定问题是什么。我以前遇到过这个问题,但过去它已经解决了(黑魔法?)。任何帮助将不胜感激。