我正在使用 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;
所以它不起作用。我认为安装应该是不同的。怎么解决?在此先感谢您的帮助。
似乎我有圆形包含error: C2143: syntax error: missing ';' before '*'
error: C4430: missing type specifier - int assumed. Note: C++ does not support default-int
,但我只包括它一次。这很奇怪。
答案 0 :(得分:2)
以下是我修复它的方法:
qtwebkit_tp4_qt57_msvc2015_x86.zip
的内容复制到C:\Qt\5.7\msvc2015
; webkitwidgets
包含在.pro
文件中; #include <QtWebKitWidgets/QWebView>
QWebView *mapBrowserView;
对象; 现在全部编译和工作。