搜尋

首頁  >  問答  >  主體

laravel Validator 只能驗證表單提交過來的資料嗎?能給定一組資料驗證嗎

可以給定一組資料用Validator 驗證嗎

public function store(PincardRequest $request){
        这个是方法
}

下面這個是驗證

<?php

namespace App\Http\Requests;

use App\Http\Requests\Request;

class PincardRequest extends Request
{
    /**
     * 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 [
            'yd'=>array('required','regex:/\p{Han}/u'),

        ];
    }

    public function messages(){
        return [
            'yd.required'=>'不能为空!',

        ];
    }


}

我要怎麼在store傳yd過去給驗證

某草草某草草2741 天前589

全部回覆(2)我來回復

  • 怪我咯

    怪我咯2017-05-16 16:50:34

    謝邀,可以這麼做,在控制器中增加下面兩個方法,如果需要傳數組驗證,則使用下面的方法

    /**
     * Validate the given parameters with the given rules.
     *
     * @param  array  $parameters
     * @param  array  $rules
     * @param  array  $messages
     * @param  array  $customAttributes
     * @return void
     */
    public function validateParameters($parameters, array $rules, array $messages = [], array $customAttributes = [])
    {
        $validator = $this->getValidationFactory()->make($parameters, $rules, $messages, $customAttributes);
    
        if ($validator->fails()) {
             $this->throwValidationException(app('request'), $validator);
        }
    }
    
    /**
     * 抛出一个验证异常
     *
     * @param WrapedValidationException $e
     * @param Request                   $request
     *
     * @throws ValidationException
     */
    protected function throwWrapedValidationException(WrapedValidationException $e, Request $request)
    {
        throw new ValidationException(null, $this->buildFailedValidationResponse($request, $e->getErrors()));
    }

    回覆
    0
  • 天蓬老师

    天蓬老师2017-05-16 16:50:34

    那個。 。 。那個數組提交是什麼意思? ? ?

    回覆
    0
  • 取消回覆