我想知道用于开发混合移动应用程序的 cordova Visual Studio插件仅支持本地HTML Web应用程序?
还是有其他Cordova Visual Studio插件可用于使用ASP.NET MVC应用程序开发混合应用程序吗?
(http://www.microsoft.com/en-us/download/details.aspx?id=42675)
答案 0 :(得分:0)
你可以从任何地方获得你需要的html页面和其他一些资源,但你需要在config.xml文件中设置origin属性以允许我们的应用程序的跨doman调用(如果这是我们的问题)。
答案 1 :(得分:0)
Cordova为混合移动应用程序开发提供本地HTML模板。如果我们在config.xml文件中添加http://www.google.com,那么它将为android生成类似“file:///android-asset/http://www.google.com
”的URL。所以我们会得到网络错误。
<强>解决方案:强>
如果我们想要使用Cordova模板加载http://www.google.com,请加载如下所示的网址
<script type="text/javascript">
//Update with your remote URL
this.document.location.href = "http://www.google.com"
</script>
编辑1:此问题已通过MDHA CTP 2.0解决。我们可以提供Remote URL in the Config.xml page by editing Startup page