2

我需要从QWebEnginePage. 我在文档中找到了toHtml方法,但它总是返回一个空字符串。我尝试了 toPlainText 并且它有效,但这不是我需要的。

MyClass::MyClass(QObject *parent) : QObject(parent)
{
   _wp = new QWebEnginePage();
   _wp->settings()->setAttribute(QWebEngineSettings::AutoLoadImages, false);
   _wp->settings()->setAttribute(QWebEngineSettings::JavascriptEnabled, true);
   connect(_wp, SIGNAL(loadFinished(bool)), this, SLOT(wpLoadFinished(bool)));
}
void MyClass::start()
{
   _wp->load(QUrl("http://google.com/"));
}
void MyClass::wpLoadFinished(bool s)
{
   _wp->toHtml(
       [] (const QString &result) {
          qDebug()<<"html:";
          qDebug()<<result;
    }); // return empty string
    /*_wp->toPlainText(
       [] (const QString &result) {
          qDebug()<<"txt:";
          qDebug()<<result;
    });*/ //works perfectly
}

我究竟做错了什么?

4

2 回答 2

4

我开始关注 QWebEngine。这很酷。我有以下工作。

在发出信号的情况下,lambda 捕获必须是“=”或“this”。您还需要“可变”来修改捕获的副本。 toHtml()然而,它是异步的,因此即使您捕获了 html,它也不太可能在调用toHtml()in后直接可用SomeFunction。您可以通过使用信号和插槽来克服这个问题。

protected slots:
    void handleHtml(QString sHtml);

signals:
    void html(QString sHtml);



 void MainWindow::SomeFunction()
 {
    connect(this, SIGNAL(html(QString)), this, SLOT(handleHtml(QString)));
    view->page()->toHtml([this](const QString& result) mutable {emit html(result);});
 }

void MainWindow::handleHtml(QString sHtml)
{
      qDebug()<<"myhtml"<< sHtml;
}
于 2016-06-07T23:27:41.697 回答
0

我认为问题更多是连接问题。您的代码在我的应用程序上运行良好:

    connect(page, SIGNAL(loadFinished(bool)), this,   SLOT(pageLoadFinished(bool)));

...

    page->load(QUrl("http://google.com/"));

...加载时间...

 void MaClasse :: pageLoadFinished(bool s){
   page->toHtml([this](const QString &result){         
   qDebug()<<"html:";
   qDebug()<<result;
   item->setHtml(result);});
}
于 2016-08-12T14:58:19.567 回答