gpt4 book ai didi

laravel-5 - 调用未定义的方法 Illuminate\Support\Facades\Request::all()

转载 作者:行者123 更新时间:2023-12-05 08:16:51 27 4
gpt4 key购买 nike

我在 Laravel 5.1 中使用 session ,这是我的 Controller 代码:

Route::post('/task', function (Request $request) {
$validator = Validator::make($request->all(), [
'name' => 'required|max:255',
]);

if ($validator->fails()) {
return redirect('/')
->withInput()
->withErrors($validator);
}


});

我需要使用 session ,并收到此错误:调用未定义的方法 Illuminate\Support\Facades\Request::all()

最佳答案

确保您在文件顶部导入正确的请求类:

使用 Illuminate\Http\Request;

目前看起来您正在使用 Request facade

关于laravel-5 - 调用未定义的方法 Illuminate\Support\Facades\Request::all(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66744296/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com