首頁 > php框架 > Laravel > 在FormRequest表單驗證器中取得url中的值

在FormRequest表單驗證器中取得url中的值

藏色散人
發布: 2021-01-14 08:53:55
轉載
2057 人瀏覽過

最近在自己做一個blog,根據 Laravel專案開發規範來寫」優雅」的程式碼。 專案的路由大概都是這樣的

Route::get('/keywords','KeywordsController@index');
Route::get('/keywords/create','KeywordsController@create');
Route::post('/keywords/store','KeywordsController@store');
Route::delete('/keywords/{id}','KeywordsController@destory');
Route::get('/keywords/{id}/edit','KeywordsController@edit');
Route::put('/keywords/{id}','KeywordsController@update');
登入後複製

驗證器用的是繼承FormRequest基底類別來驗證的,程式碼如下在FormRequest表單驗證器中取得url中的值

<?php

namespace App\Http\Requests;use Illuminate\Validation\Rule;class KeywordRequest extends Request{
    public function rules()
    {
        //$this->route(&#39;id&#39;) 获取url占位符为id的数据
        switch ($this->method())
        {
            case  &#39;POST&#39; :
            {
                return [
                  &#39;keyword&#39; => &#39;required|unique:keywords&#39;
                ];
            }
            case &#39;PUT&#39;:
            case &#39;PATCH&#39;:
            {
              return [
                &#39;keyword&#39; => [
                  &#39;required&#39;,
                  Rule::unique(&#39;keywords&#39;)->ignore($this->route(&#39;id&#39;)),
                ],
              ];
            }
            case &#39;DELETE&#39;:
            case &#39;GET&#39;:
            default:
            {
                return [];
            }
        }
    }
    public function messages()
    {
       return [
           &#39;keyword.required&#39; => &#39;关键字不能为空&#39;,
           &#39;id.required&#39; => &#39;id不能为空&#39;,
           &#39;keyword.unique&#39; => &#39;关键字已存在,请重新填写&#39;
       ];
    }}
登入後複製

根據請求的方法不同來進行驗證

為了保持規範我在更新請求的時候的,並沒有把id放到form表單中,只放在了URL中,在官方文件中也有這樣的方法。

use Illuminate\Validation\Rule;
Validator::make($data, [
    &#39;email&#39; => [
        &#39;required&#39;,
        Rule::unique(&#39;users&#39;)->ignore($user->id),
    ],]);
登入後複製

但是這個$user->id一直不知道怎麼獲取,在網上終於找到一個方法,符合我的要求

$this->route(&#39;id&#39;)
登入後複製

以上是在FormRequest表單驗證器中取得url中的值的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:learnku.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板