Qt WebView

Qt WebView 提供在 QML 应用程序中显示 Web 内容的方式,而不必通过使用有意义的本机 API 来包括完整 Web 浏览器堆栈。

这在移动平台是有用的,譬如: Android and iOS ; On iOS the policy dictates that all web content is displayed using the operating system's web view.

On Windows and Linux, Qt WebView depends on the Qt WebEngine 模块渲染内容。

On macOS, the system web view is used in the same manner as iOS.

先决条件

To make the Qt WebView module function correctly across all platforms, it's necessary to call QtWebView::initialize () 之后才创建 QGuiApplication 实例和在创建窗口的 QPlatformOpenGLContext 之前。

使用模块

QML API

The QML types in Qt WebView are available through the QtWebView 导入。要使用类型,添加以下 import 语句到 .qml 文件:

import QtWebView
					

C++ API

Using the C++ API requires linking against the module library, either directly or through other dependencies.

构建采用 CMake

使用 find_package() command to locate WebView component in the Qt6 package:

find_package(Qt6 COMPONENTS WebView)
target_link_libraries(target PUBLIC Qt::WebView)
					

更多信息,见 构建采用 CMake overview page.

采用 qmake 构建

添加 webview 模块到 QT 变量在工程的 .pro 文件:

QT += webview
					

局限性

由于平台的限制,重叠 WebView 与其它 QML 组件不被支持。这样做会产生不可预测结果,可能因平台而异。

范例

查看 Qt WebView 范例 了解如何在应用程序中使用 API 的演示。

许可

Qt WebView 在商业许可下是可用的来自 Qt 公司 。此外,它是可用的根据 GNU LGPL (次一般公共许可) 第 3 版 ,或 GNU GPL (一般公共许可) 第 2 版 。见 Qt 许可 进一步了解细节。

API 参考