gpt4 book ai didi

QT:未安装模块 "QtWebView"

转载 作者:行者123 更新时间:2023-12-05 00:09:27 25 4
gpt4 key购买 nike

我的操作系统是win10,QT的版本是Qt5.7 mingw53_32,目标操作系统是win10。当我使用 qmlscene执行一个 qml 文件,它发生了一些错误:

qrc:/[...].qml:3 module "QtWebView" is not installed



我的 qml 文件如下。
import QtQuick 2.0
import QtQuick.Controls 1.0
import QtWebView 1.1

ScrollView {
width: 1280
height: 720
WebView {
id: webview
url: "http://www.baidu.com"
anchors.fill: parent
onNavigationRequested: {
// detect URL scheme prefix, most likely an external link
var schemaRE = /^\w+:/;
if (schemaRE.test(request.url)) {
request.action = WebView.AcceptRequest;
} else {
request.action = WebView.IgnoreRequest;
// delegate request.url here
}
}
}
}

我已经安装了一些模块。
enter image description here

最佳答案

QtWebView是一个模块,它围绕特定平台的 Web View 提供包装组件,用于限制性平台(例如 iOS),这些平台不允许应用程序提供自己的 HTML 内容渲染器。

在诸如桌面 Windows 等功能齐全的平台上,您可以使用功能更强大的 Web 渲染器集成,例如由 QtWebEngine 提供的module或通过QtWebKit module

关于QT:未安装模块 "QtWebView",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42450333/

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