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

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

Laravel 登錄表單 - 電子郵件不正確

Laravel 登錄表單 - 電子郵件不正確

PHP
慕絲7291255 2023-04-21 13:22:53
當(dāng)我嘗試在 Laravel 中使用表單登錄并保存會(huì)話以在主頁中重定向時(shí),我總是收到消息說所需的電子郵件不正確,即使它是正確的這是控制器:public function welcome (Request $request) {    {         $this->validate($request, [        'mail' => 'required|email',        'mdp'=> 'required'    ]);    $patt= patient::orderBy('created_at','desc')->get() ;    foreach ($patt as $log )     {        if (( $log->Login== $request->input('mail') ) && ( $log->Password== $request->input('mdp') ))        {            $request->session()->put('log_in', true);            return redirect('index' , ['helloo'=>$log]);        }     return back()->withErrors([        'message'=> 'Emails or password not correct!'        ]) ;  }}網(wǎng)站.php:Route::Post('/index' , 'patientcontroller@welcome')->name('rahmaa');形式:<form  class="form-signin" method="post" action="{{route('rahmaa')}}">     @csrf    <input type="text" class="form-control" name="email" placeholder="Adresse mail" data-rule="email" autofocus="" /> </br>      <input type="password" class="form-control" name="mdp" placeholder="Mot de passe" data-rule="required"/>            <button class="btn btn-primary btn-block" type="submit"> Se connecter </button> <br>     <center> <a href="inscription"> Inscrivez-vous </a>  </center>     </form>
查看完整描述

2 回答

?
慕標(biāo)5832272

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

您收到錯(cuò)誤郵件的原因是必需的,因?yàn)槟l(fā)送的是電子郵件而不是郵件。只是mail改成email


$this->validate($request, [

    'email' => 'required|email',

    'mdp'=> 'required'

]);

或?qū)⑤斎敫膎ame attribute為mail


<input name="mail"/>

重寫你的功能


use Illuminate\Support\Facades\Hash;

....


public function welcome(Request $request)

    {

        $request->validate([

            'email' => 'required|email',

            'mdp' => 'required',

        ]);


        // since email is unique. no need to grab all data

        $patient = patient::where('Login', $request->input('email'))->first();


        // if patient exists

        if ($patient) {


            // check hashed password

            // assuming $patient->Password hashed

            if (Hash::check($request->input('mdp'), $patient->Password)) {

                $request->session()->put('log_in', true);

                return redirect('index', compact('patient'));

            }

        }


        return back()->withErrors([

            'message' => 'Emails or password not correct!',

        ]);

    }


查看完整回答
反對 回復(fù) 2023-04-21
?
三國紛爭

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

你的 HTML 是<input type="text" class="form-control" name="email" /> 輸入的名稱是“電子郵件”,在你正在搜索“郵件”的 php 中

'mail' => 'required|email',

它應(yīng)該是:

<input type="text" class="form-control" name="mail" />


查看完整回答
反對 回復(fù) 2023-04-21
  • 2 回答
  • 0 關(guān)注
  • 163 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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