0

我正在使用请求验证进行验证。但是当验证规则失败时,我没有收到类似错误名称的消息。

我使用Make::Request方法

我的表单请求代码

namespace xx\xx\xxx\Requests;

use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Validation\Rule;

class InstituteUpdateRequest 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($id=0)
{

    return [
        'name'               =>  'required|regex:/^[(a-zA-Z\s\-)]+$/u|min:3|max:80',
        'valid_from'         =>  'date|max:30|nullable',
        'valid_to'           => 'date|nullable',
        'address'            => 'regex:/^[(a-zA-Z.\-,0-9\s)]+$/u|max:150',
        'mobile'             =>   'required', Rule::unique('users')->ignore($id),
        'city'               => 'regex:/^[(a-zA-Z\-\s)]+$/u|max:100',
        'state'              => 'regex:/^[(a-zA-Z\-\s)]+$/u|max:100',
        'pin'                => 'max:6|regex:/^[(0-9)]+$/u',
    ];
}
}

我的控制器代码

 public function update ( InstituteUpdateRequest  $request )
  {
     DB::transaction(function () use ($request) {
         $this->institute_update = Institute::where('class_code' ,$request->class_code)->update([
                'name'=>$request->name ,
                'valid_from'=>date('Y-m-d',strtotime($request->valid_from)) ,
                'valid_to'=>date('Y-m-d',strtotime($request->valid_to)),
                'mobile'=>$request->mobile,
                'address'=>$request->address,
                'city'=>$request->city,
                'state'=>$request->states,
                'pin'=>$request->pin,
                'logo' => 'abc',

            ]);
         });
    }

   my API Response 


  {"name":"Demo Institute 1BBBB","valid_from":"29-12-2017","valid_to":"20-12-2018","mobile":"9999999991","address":"Kolar","city":"Bhopal","state":"Madhya Pradesh","pin":"835553","logo":"","class_code":"940370037"}

这是我的代码。在这种情况下,如果我传递了错误的名称Demo Institute 1BBBB。我没有收到错误消息。 只重定向到我的插件页面。我在这里分享的那个图像。

请告诉我 wt 出了问题。

4

1 回答 1

0

我自己找到了我的解决方案。其实我不是在登录后尝试提出请求。这样它就被重定向到我们的插件页面。但是当我在登录后尝试它时,我得到了正确格式的错误消息。

于 2017-12-13T20:17:34.917 回答