QWebEngineView在load()或page()方法崩溃

时间:2016-02-12 03:58:28

标签: qt qtwebengine qt5.6

我正在努力将Qt 5.5,QWebView项目移植到Qt 5.6(beta),QWebEngine。我已经浏览了移植指南here。我的代码如下所示:

.h文件定义了_view,如下所示:

QWebEngineView* _view;

和.cpp构造函数(类继承自QWidget)具有:

QVBoxLayout* vbox = new QVBoxLayout(this);
_view = new QWebEngineView(this);
    connect(_view, SIGNAL(loadFinished(bool)), this, SLOT(loadPageFinished(bool)));
QString webDir = getReportBasePath() + no_tr("/index.html#") + startingPage;
//  QWebEnginePage *page = _view->page();   // <-- CRASH!!
_view->load( QUrl("file:///" + webDir ) );  // <-- CRASH!!
_view->show();
vbox->addWidget(_view);

在执行page()或load()方法时,整个事情崩溃了:

Unhandled exception at 0x67019C66 (Qt5Cored.dll) in qxs.exe: 0xC0000005: 
Access violation reading location 0x00000000.

我已经验证_view指针不为null。

如果您查看文档,他们会有一个示例here,它几​​乎与我上面的代码完全相同。我也尝试将load()调用替换为与他们相同:

view->load(QUrl("http://qt-project.org/"));

它仍然崩溃。什么可能导致这些崩溃的想法?

我是否需要首先在QWebEngineView上创建QWebEnginePage和setPage()? (我假设没有...)它是否与我正在使用的Qt二进制文件(预先为Windows 32位MSVC 2013构建)有关?

堆栈跟踪的相关部分:

    Qt5WebEngineWidgetsd.dll!QWebEnginePagePrivate::QWebEnginePagePrivate(QWebEngineProfile * _profile) Line 95 C++
    Qt5WebEngineWidgetsd.dll!QWebEnginePage::QWebEnginePage(QObject * parent) Line 393  C++
    Qt5WebEngineWidgetsd.dll!QWebEngineView::page() Line 145    C++
    Qt5WebEngineWidgetsd.dll!QWebEngineView::load(const QUrl & url) Line 157    C++
    qxs.exe!ReportWidget::ReportWidget(QcaMain * qm, QWidget * parent, QString startingPage) Line 321   C++

它在这里崩溃了:

QWebEnginePagePrivate::QWebEnginePagePrivate(QWebEngineProfile *_profile)
    : adapter(new WebContentsAdapter)
    , history(new QWebEngineHistory(new QWebEngineHistoryPrivate(this)))
    , profile(_profile ? _profile : QWebEngineProfile::defaultProfile())
    , settings(new QWebEngineSettings(profile->settings()))
    , view(0)
    , isLoading(false)
    , scriptCollection(new QWebEngineScriptCollectionPrivate(browserContextAdapter()->userScriptController(), adapter.data()))
    , m_backgroundColor(Qt::white)
    , fullscreenMode(false)
{
    memset(actions, 0, sizeof(actions));
}

我想也许这与_profile为NULL有关,所以我试图首先像这样设置一个QWebEngineProfile:

QWebEnginePage* page = new QWebEnginePage(  QWebEngineProfile::defaultProfile(), _view );
_view->setPage( page );

然后它在qwebengineprofile.cpp中崩溃:

static QWebEngineProfile* profile = new QWebEngineProfile(
            new QWebEngineProfilePrivate(BrowserContextAdapter::defaultContext()),
            BrowserContextAdapter::globalQObjectRoot());

堆栈跟踪:

    Qt5Cored.dll!convert_to_wchar_t_elided(wchar_t * d, unsigned int space, const char * s) Line 256    C++
    Qt5Cored.dll!qt_message_fatal(QtMsgType __formal, const QMessageLogContext & context, const QString & message) Line 1593    C++
    Qt5Cored.dll!QMessageLogger::fatal(const char * msg, ...) Line 784  C++
    Qt5WebEngineCored.dll!`anonymous namespace'::subProcessPath(void)   C++
    Qt5WebEngineCored.dll!WebEngineLibraryInfo::getPath(int)    C++
    Qt5WebEngineCored.dll!WebEngineContext::WebEngineContext(void)  C++
    Qt5WebEngineCored.dll!WebEngineContext::current(void)   C++
    Qt5WebEngineCored.dll!QtWebEngineCore::BrowserContextAdapter::defaultContext(void)  C++
>   Qt5WebEngineWidgetsd.dll!QWebEngineProfile::defaultProfile() Line 516   C++

2 个答案:

答案 0 :(得分:8)

问题解决了。我错过了QWebEngine所需的一些关键文件,否则它会崩溃。这些文件必须与可执行文件位于同一目录中。它们由windeployqt.exe工具放在那里,因此这是确保您的Qt应用程序具有运行而不会崩溃所需的一切的最佳方法。

qtwebengine_resources.pak
qtwebengine_resources_100p
qtwebengine_resources_200p.pak.pak
QtWebEngineProcess.exe
icudtl.dat  

这让我感到兴奋的原因是我们的开发小组之前使用的是Qt 4.8,并使用内部方法将所需的Qt dll和whatnot复制到目标目录中。升级到Qt 5.x并添加QWebEngine时,我们没有意识到上面的文件是必需的。

答案 1 :(得分:2)

您可以设置名为QTWEBENGINEPROCESS_PATH

的Windows环境变量

示例:

QTWEBENGINEPROCESS_PATH C:\Qt\Qt5.6.0\5.6\msvc2013_64\bin\QtWebEngineProcess.exe

使用此解决方案,无需将资源文件复制到项目输出文件夹