运行 AngularJS 网络视图 Windows 8.1
Run AngularJS in WebView Windows 8.1
各位。
我在 Windows 8.1(桌面)中使用一个应用程序,它有一个在 AngularJS 中加载网站的 WebView。本站是本地的,AngularJS生成的所有文件都在Assets/MySite.
的应用程序中
当我将 AngularJS 生成的内容放入 WebView 时,它本身无法正确呈现。当我 运行 通过 IIS 访问网站时,网站运行良好。
问题是,我可以用 Web 服务加载 WebView 吗?如果 AngularJS 只适用于服务网络,对吗?
如果我这样做:
webView.Source = new Uri("ms-appx-web:///Assets/MySite/index.html");
无效。
感谢
我在这里找到了解决方案!
A simple in-process HTTP server for Windows 8 Metro apps
感谢
各位。
我在 Windows 8.1(桌面)中使用一个应用程序,它有一个在 AngularJS 中加载网站的 WebView。本站是本地的,AngularJS生成的所有文件都在Assets/MySite.
的应用程序中当我将 AngularJS 生成的内容放入 WebView 时,它本身无法正确呈现。当我 运行 通过 IIS 访问网站时,网站运行良好。
问题是,我可以用 Web 服务加载 WebView 吗?如果 AngularJS 只适用于服务网络,对吗?
如果我这样做:
webView.Source = new Uri("ms-appx-web:///Assets/MySite/index.html");
无效。
感谢
我在这里找到了解决方案!
A simple in-process HTTP server for Windows 8 Metro apps
感谢