3

自 6 个月以来,我一直在研究 phonegap (IOS),应用程序已准备就绪。但现在我希望这个应用程序在visualstudio上运行。

我正在使用 VS2010 并且还为手机开发安装了 windows sdk。我还为 windows 安装了 cordova 模板,并且它在新开发中工作正常。

但现在我只想使用我在 xcode 中为 windows 中的 ios 制作的现成 phonegap 应用程序。

我怎样才能使它成为可能?

编辑: 当尝试将我的 ios 应用程序运行到 VS 时,我只是替换 VS 中应用程序的 WWW 文件夹并尝试运行应用程序。它很好地打开了模拟器,甚至调用了第一个“Index.html”页面,但没有 css/js 引用它的getting.even不调用点击事件。那么我必须为 Windows 执行的 WWW 文件夹结构有什么变化吗?我是 Windows 手机的新手。

4

2 回答 2

1
  1. 建设项目;然后检查 CordovaSourceDictionary.xml 中存在的所有文件
  2. 如果没有,请确保您的所有文件都有构建操作内容(如何在文件上设置构建操作 - 属性窗口中未显示高级属性
  3. 如果这没有帮助尝试将以下行添加到您的 index.html 以查看是否有任何 js 错误(错误将显示在 VS 输出窗口中 - Ctrl+Alt+O)
<script type="text/javascript">
    window.console = {
        log: function (str) { window.external.Notify(str); }
    };

    // output errors to console log
    window.onerror = function (e) {
        console.log("window.onerror ::" + JSON.stringify(e));
    };

    console.log("Installed console !");
</script>
于 2013-02-12T18:47:17.580 回答
0

The cordova.js might be different on WP. Try to create a brand new WP project then copy the cordova.js to the www folder and you are good to go.

于 2013-02-12T10:20:27.603 回答