我们可以使用 WebView 在 UWP 应用程序中显示远程 Web 内容吗?
Can we use a WebView to display remote web content in UWP apps?
Windows 运行-时间API class Windows Phone 8中的WebView用于显示本地HTML内容,而不是网页浏览。
Microsoft 的 Matt Small 在 Ten things you need to know about WebView 中写道,WebView 对象不是通用浏览器,将在 WebView 中显示在线内容作为主要目的的应用程序将被拒绝。 Small 在 2012 年写了关于 Windows 8 Phone。
2016 年 UWP 应用程序中 WebView 对象的位置是否发生变化? Windows 10 XAML documentation itself suggests using the http or https schemes for remote content, and the ms-appx-web scheme for local content.
WP8 WebBrowser class 看起来很有前途,但似乎没有出现在 W10M 中。
如果不允许 WebView 浏览网页,是否有任何其他对象、框架或项目适合在 UWP 应用程序中将显示网页内容作为其主要目的?理想情况下,运行s JavaScript 并且功能类似于真正的浏览器。
Can we use a WebView to display remote web content in UWP apps?
是的,你可以,它运行良好,它使用 Edge 引擎并运行 javascript 一切都像一个真正的浏览器。
几个月前有新闻报道 Microsoft’s Edge team is encouraging developers to build browsers. You can also take a look at the JSBrowser app, it is a simple web browser written in javascript and uses the WebView 控制。
然而,尽管它运行良好,但仍不完美,它存在内存管理问题和通过应用程序访问 Web 内容受限等问题,但它足以用作应用程序内浏览器 (我在实时应用程序中这样做)。
If WebViews are not permitted to browse the web, are there any other
objects, frameworks, or projects that would suitable for displaying
web content as their primary purpose in UWP apps? Ideally, something
that runs JavaScript and functions like a real browser.
绝对允许使用 WebView 浏览网页,但我不知道 UWP 中是否有 WebView 的替代方案。
Windows 运行-时间API class Windows Phone 8中的WebView用于显示本地HTML内容,而不是网页浏览。
Microsoft 的 Matt Small 在 Ten things you need to know about WebView 中写道,WebView 对象不是通用浏览器,将在 WebView 中显示在线内容作为主要目的的应用程序将被拒绝。 Small 在 2012 年写了关于 Windows 8 Phone。
2016 年 UWP 应用程序中 WebView 对象的位置是否发生变化? Windows 10 XAML documentation itself suggests using the http or https schemes for remote content, and the ms-appx-web scheme for local content.
WP8 WebBrowser class 看起来很有前途,但似乎没有出现在 W10M 中。
如果不允许 WebView 浏览网页,是否有任何其他对象、框架或项目适合在 UWP 应用程序中将显示网页内容作为其主要目的?理想情况下,运行s JavaScript 并且功能类似于真正的浏览器。
Can we use a WebView to display remote web content in UWP apps?
是的,你可以,它运行良好,它使用 Edge 引擎并运行 javascript 一切都像一个真正的浏览器。
几个月前有新闻报道 Microsoft’s Edge team is encouraging developers to build browsers. You can also take a look at the JSBrowser app, it is a simple web browser written in javascript and uses the WebView 控制。
然而,尽管它运行良好,但仍不完美,它存在内存管理问题和通过应用程序访问 Web 内容受限等问题,但它足以用作应用程序内浏览器 (我在实时应用程序中这样做)。
If WebViews are not permitted to browse the web, are there any other objects, frameworks, or projects that would suitable for displaying web content as their primary purpose in UWP apps? Ideally, something that runs JavaScript and functions like a real browser.
绝对允许使用 WebView 浏览网页,但我不知道 UWP 中是否有 WebView 的替代方案。