项目错误:QT中的未知模块:webkitwidgets问题

时间:2017-09-02 17:40:24

标签: c++ qt qtwebview

我正在使用 public function store(Request $request){ if(! auth()->attempt($request->only(['email', 'password']))){ return back()->withErrors([ 'message' => 'Please check your credentials' ]); } return redirect('/home'); } ,我对未定义的Qt 5.7.1有疑问。我找到并从链接下载 - https://github.com/annulen/webkit/releases

QtWebView并将存档内容复制到qtwebkit_tp4_qt57_msvc2015_x86.zip。现在它找到C:\Qt\5.7\msvc2015,但问题在于对象:

test.h

QtWebView

错误:

QtWebView *mapBrowserView;

0_1504343524118_2017-09-02_121132.png

所以它不起作用。我认为安装应该是不同的。怎么解决?在此先感谢您的帮助。

似乎我有圆形包含error: C2143: syntax error: missing ';' before '*' error: C4430: missing type specifier - int assumed. Note: C++ does not support default-int ,但我只包括它一次。这很奇怪。

1 个答案:

答案 0 :(得分:2)

以下是我修复它的方法:

  1. 将档案qtwebkit_tp4_qt57_msvc2015_x86.zip的内容复制到C:\Qt\5.7\msvc2015;
  2. webkitwidgets包含在.pro文件中;
  3. 包括#include <QtWebKitWidgets/QWebView>
  4. 初始化QWebView *mapBrowserView;对象;
  5. 现在全部编译和工作。