gpt4 book ai didi

php - 如何解决类App\Http\Requests\UpdateUserRequest不存在?拉拉维尔 5.3

转载 作者:行者123 更新时间:2023-12-01 22:43:43 24 4
gpt4 key购买 nike

我的代码是这样的:

<?php

namespace App\Http\Requests;

use Illuminate\Foundation\Http\FormRequest;
use App\Models\User;

class UpdateUserRequest extends FormRequest
{

/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}

/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
// return User::$rules;

return [
'username' => 'required|unique:users,username,'. \Auth::user()->id;,
'email' => 'required|unique:users,email,'. \Auth::user()->id;,
];
}
}

这是更新用户数据的请求

执行代码时,出现如下错误:

Route.php第339行中的ReflectionException:类App\Http\Requests\UpdateUserRequest不存在

如何解决这个错误?

最佳答案

您的两条规则都存在语法错误:

'username' => 'required|unique:users,username,'. \Auth::user()->id;,

删除分号:

'username' => 'required|unique:users,username,'. \Auth::user()->id,

如果有人碰巧在未登录的情况下提交表单,您也可能会遇到问题,但这可能是也可能不是您关心的问题。

关于php - 如何解决类App\Http\Requests\UpdateUserRequest不存在?拉拉维尔 5.3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41538839/

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