溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

在FormRequest表單驗證器中怎樣獲取url中的值

發(fā)布時間:2021-01-14 15:32:06 來源:億速云 閱讀:236 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關在FormRequest表單驗證器中怎樣獲取url中的值,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

最近在自己做一個blog,根據(jù) Laravel項目開發(fā)規(guī)范來寫”優(yōu)雅”的代碼。
項目的路由大概都是這樣的

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基類來驗證的,代碼如下

<?php

namespace App\Http\Requests;use Illuminate\Validation\Rule;class KeywordRequest extends Request{
    public function rules()
    {
        //$this->route('id') 獲取url占位符為id的數(shù)據(jù)
        switch ($this->method())
        {
            case  'POST' :
            {
                return [
                  'keyword' => 'required|unique:keywords'
                ];
            }
            case 'PUT':
            case 'PATCH':
            {
              return [
                'keyword' => [
                  'required',
                  Rule::unique('keywords')->ignore($this->route('id')),
                ],
              ];
            }
            case 'DELETE':
            case 'GET':
            default:
            {
                return [];
            }
        }
    }
    public function messages()
    {
       return [
           'keyword.required' => '關鍵字不能為空',
           'id.required' => 'id不能為空',
           'keyword.unique' => '關鍵字已存在,請重新填寫'
       ];
    }}

根據(jù)請求的方法不同來進行驗證
為了保持規(guī)范我在更新請求的時候的,并沒有把id放到form表單中,只放在了URL中,在官方文檔中也有這樣的方法。

use Illuminate\Validation\Rule;
Validator::make($data, [
    'email' => [
        'required',
        Rule::unique('users')->ignore($user->id),
    ],]);

但是這個$user->id一直不知道怎么獲取,在網(wǎng)上終于找到一個方法,符合我的要求

$this->route('id')

關于“在FormRequest表單驗證器中怎樣獲取url中的值”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI