gpt4 book ai didi

c++ - qwebengineview qt5.9如何提取数据

转载 作者:行者123 更新时间:2023-11-30 05:10:33 24 4
gpt4 key购买 nike

我有一个简单的网页,我想提取文本 My First Heading。

<!DOCTYPE html>
<html>
<script type="text/javascript">

//This is a single line comment

/* This is a
block comment */

</script>
<body>

<h1 id="title">My First Heading</h1>
<p id="text">My first paragraph.</p>
</body>
</html>

页面加载正常,但 runJavascript 函数未返回任何内容。我尝试了不同的变化。我预期的调试输出应该是 My First Heading。我错过了什么?

 QString path("C:\\Temp\\x.html");
QFile file(path);
QString source;
file.open(QIODevice::ReadOnly);
source = file.readAll();
file.close();

page = new QWebEnginePage();
page->load(QUrl::fromLocalFile(path));
ui->widget->setPage(page);
ui->widget->setContextMenuPolicy(Qt::NoContextMenu);

//page->runJavaScript("document.getElementById(title)", [](const QVariant&result){ qDebug() << result.toString();});

//page->runJavaScript("document.getElementById(\"title\")", [](const QVariant&result){ qDebug() << result.toString();});

//page->runJavaScript("document.getElementById('title')", [](const QVariant&result){ qDebug() << result.toString();});

最佳答案

文档说当页面内容完全加载时会发出一个信号:loadFinished .所以我认为你应该将这个信号连接到一个自定义槽,只有在这个槽被调用之后你才能访问页面的内容。

关于c++ - qwebengineview qt5.9如何提取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45616469/

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