c++ - QtWebEngine - 同步执行 JavaScript 以读取函数结果

标签 c++ multithreading qt callback qtwebengine

我的一个 C++ 类中有以下方法(使用 QtWebEngine):

    QString get()
    {
        QString result;

        view->page()->runJavaScript("test();", [this](const QVariant &v)
            {
                result = v.toString();
            });

        return result;
    }

就是执行test() JS函数,并返回本次调用的结果。

不幸的是,回调是异步的,程序崩溃了。我怎样才能让它发挥作用?

最佳答案

回调是异步的,因为 JavaScript 的执行不仅发生在另一个线程中,而且发生在另一个进程 中。所以没有办法让它完全同步。

最好的解决方案是迁移您的 C++ 代码以异步工作。如果做不到,唯一可行的解​​决方案是使用 QEventLoop,有点像这样:

void ranJavaScript()
{
    emit notifyRanJavaScript();
}

QString get()
{
    QString result;
    QEventLoop loop;
    QObject::connect(this, SIGNAL(notifyRanJavaScript()), &loop, SLOT(quit()));
    view->page()->runJavaScript("test();", [this](const QVariant &v)
        {
            result = v.toString();
            this.ranJavaScript();
        });

    loop.exec();
    return result;
}

但是,请注意,此示例对于实际使用而言过于简单:您需要确保在事件循环启动之前未运行 JavaScript。最合适的方法是实现一个合适的插槽而不是 lambda + 将对 view->page()->runJavaScript() 的调用分解到另一个异步调用的插槽中 < em>after 开始事件循环。对于这样一个看似简单的任务,需要大量的胶水代码,但这就是它所需要的。这是一个例子:

主窗口.h

#ifndef TMP_MAIN_WINDOW_H
#define TMP_MAIN_WINDOW_H

#include <QMainWindow>
#include <QVariant>

class QWebEngineView;
class QPushButton;

class MainWindow : public QMainWindow
{
    Q_OBJECT
public:
    MainWindow(QWidget * parent = 0);

    QString get();

    void onScriptEnded(const QVariant & data);

Q_SIGNALS:
    void notifyRanJavaScript();

private Q_SLOTS:
    void onButtonPressed();

    void startScript();

private:
    QWebEngineView *    m_view;
    QPushButton *       m_button;
    QString             m_scriptResult;
};

#endif // TMP_MAIN_WINDOW_H

主窗口.cpp

#include "MainWindow.h"
#include <QWebEngineView>
#include <QPushButton>
#include <QHBoxLayout>
#include <QVBoxLayout>
#include <QMessageBox>
#include <QEventLoop>
#include <QDebug>
#include <QTimer>

MainWindow::MainWindow(QWidget * parent) :
    QMainWindow(parent)
{
    m_view = new QWebEngineView;
    QWebEnginePage * page = new QWebEnginePage(m_view);
    m_view->setPage(page);

    QString html = QStringLiteral("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\""
                                  "\"http://www.w3.org/TR/html4/strict.dtd\"><html>"
                                  "<head><h3>head</h3>\n</head>"
                                  "<script type=\"text/javascript\">function test() { return \"A!\"; }</script>"
                                  "<body>text\n</body></html>");
    m_view->page()->setHtml(html);

    m_button = new QPushButton;
    m_button->setMinimumWidth(35);
    m_button->setText(QStringLiteral("Test"));
    QObject::connect(m_button, SIGNAL(pressed()), this, SLOT(onButtonPressed()));

    QHBoxLayout * buttonLayout = new QHBoxLayout;
    buttonLayout->addWidget(m_button);
    buttonLayout->addStretch();

    QVBoxLayout * viewLayout = new QVBoxLayout;
    viewLayout->addLayout(buttonLayout);
    viewLayout->addWidget(m_view);

    QWidget * widget = new QWidget(this);
    widget->setLayout(viewLayout);

    setCentralWidget(widget);
}

QString MainWindow::get()
{
    QEventLoop loop;
    QObject::connect(this, SIGNAL(notifyRanJavaScript()), &loop, SLOT(quit()));

    // Schedule the slot to run in 0 seconds but not right now
    QTimer::singleShot(0, this, SLOT(startScript()));

    // The event loop would block until onScriptEnded slot is executed
    loop.exec();

    // If we got here, the script has been executed and the result was saved in m_scriptResult
    return m_scriptResult;
}

void MainWindow::onScriptEnded(const QVariant & data)
{
    qDebug() << QStringLiteral("Script ended: ") << data;
    m_scriptResult = data.toString();
    emit notifyRanJavaScript();
}

void MainWindow::onButtonPressed()
{
    QString str = get();
    QMessageBox::information(this, QStringLiteral("Script result"), str,
                             QMessageBox::StandardButton::Ok);
}

struct Functor
{
    Functor(MainWindow & window) : m_window(window) {}
    void operator()(const QVariant & data)
    {
        m_window.onScriptEnded(data);
    }
    MainWindow & m_window;
};

void MainWindow::startScript()
{
    qDebug() << QStringLiteral("Start script");
    m_view->page()->runJavaScript(QStringLiteral("test();"), Functor(*this));
}

关于c++ - QtWebEngine - 同步执行 JavaScript 以读取函数结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45330481/

相关文章:

c++ - 我试图在变量 "height"中添加变量 "media"

c++ - OS X 中的信号量数组

c# - 如何使用单线程完成多线程?

Java:BufferedReader 在 close() 上永远挂起,而 StreamDecoder 不考虑线程中断

c++ - qt 如何使用按钮动态添加包含一些小部件的组框?

c++ - 虚拟析构函数和内存释放

C++,优先队列的链表

c++ - 如何安全地销毁一个经常被两个不同线程访问的对象?

c++ - 插入sql数据库后无法检索身份字段

c++ - 如何在 QTableView 中使用就地 QComboBox