gpt4 book ai didi

ios - 如何在 Visual Studio 中运行现有的 phonegap(ios) 应用程序以进行 Windows 开发

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:22:50 25 4
gpt4 key购买 nike

我从 6 个月开始就致力于 phonegap (IOS),应用程序已准备就绪。但现在我想让这个应用程序在 visualstudio 上运行。

但现在我只想使用我现成的 phonegap 应用程序,它是在 xcode for ios in windows 中制作的。

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

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

最佳答案

  1. build 项目;然后检查 CordovaSourceDictionary.xml 中是否存在所有文件
  2. 如果没有,请确保您的所有文件都有构建操作内容 ( How to set Build Action on a file - Advanced Properties Not Displayed in properties window )
  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>

关于ios - 如何在 Visual Studio 中运行现有的 phonegap(ios) 应用程序以进行 Windows 开发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14826387/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com