第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何在 Laravel 的請(qǐng)求類(lèi)中使用 if/else

如何在 Laravel 的請(qǐng)求類(lèi)中使用 if/else

PHP
互換的青春 2023-09-22 16:51:51
我只使用一個(gè)頁(yè)面來(lái)“創(chuàng)建廣告頁(yè)面”。如何對(duì)查詢(xún)('type')使用多個(gè)驗(yàn)證規(guī)則?廣告刀片.php@if ($request->query('type') == 'text')   //fields@elseif($request->query('type') == 'post')   //fields@elseif($request->query('type') == 'banner')   //fields@endif廣告請(qǐng)求.phppublic function rules(Request $request){    //this if not work. how to resolve?    if ($request->query('type') == 'text'){        return [            'title'  => ['required','max:255', Rule::unique('ads')->ignore($this->route('ad'))],            'url' => 'required',            'type' => 'required|in:text,banner,post,sidebar',            'status' => 'nullable',            'btn' => 'nullable',            'pic' => 'nullable',            'description' => 'required',        ];    }}如何對(duì)查詢(xún)('type')使用多個(gè)驗(yàn)證規(guī)則?
查看完整描述

1 回答

?
慕的地6264312

TA貢獻(xiàn)1817條經(jīng)驗(yàn) 獲得超6個(gè)贊

在請(qǐng)求類(lèi)中,您可以通過(guò)方法訪問(wèn)接收到的數(shù)據(jù)all()。


$data = $this->all();

$type = isset($data['type'])? $data['type'] : null;


switch($type) {

     case "text": 

        return [

           'url' => 'required'

        ]

}

請(qǐng)注意,該rules()方法返回的是一個(gè)普通的 PHP 數(shù)組,它可以是不同數(shù)組的合并。您可能有一些與此type字段無(wú)關(guān)的規(guī)則。


$commonRules = [

   'title' => 'required',

   'email' => 'required|email',

];

$specificRules = [];


$data = $this->all();

$type = isset($data['type'])? $data['type'] : null;


switch($type) {

     case "text": 

        $specificRules = [

           'url' => 'required',

        ];

        break;


     case "foo":

        $specificRules = [

            'btn' => 'nullable',

        ];

        break;

}


return array_merge($commonRules, $specificRules);


查看完整回答
反對(duì) 回復(fù) 2023-09-22
  • 1 回答
  • 0 關(guān)注
  • 111 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)