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

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

Laravel 注冊 - 表單數(shù)據(jù)未轉(zhuǎn)換為數(shù)據(jù)庫

Laravel 注冊 - 表單數(shù)據(jù)未轉(zhuǎn)換為數(shù)據(jù)庫

PHP
qq_花開花謝_0 2022-12-03 10:54:57
在一個(gè)新項(xiàng)目上工作,我使用了 laravel auth 腳手架,但我編輯了登錄、注冊等視圖,布局以尋找美觀。這樣做時(shí),提交的表單似乎可以正常工作,但是刷新數(shù)據(jù)庫時(shí)不會發(fā)送任何記錄。不知道我在這里錯(cuò)過了什么。我將在下面包含代碼。希望你能給我指明正確的方向。HTML@extends('layouts.app')@section('content')<div class="flex items-center justify-center bg-gray-50 py-12 px-4 sm:px-6 lg:px-8">    <div class="max-w-md w-full">        <div>            <h2 class="mt-6 text-center text-3xl leading-9 font-extrabold text-gray-900">              Register            </h2>          </div>          <form class="mt-8" action="/register" method="POST">            @csrf            <input type="hidden" name="remember" value="true" />            <div class="rounded-md shadow-sm">              <div>                <input aria-label="Name" name="name" type='text' required class="appearance-none rounded-none relative block w-full px-3 py-2 border border-gray-300 placeholder-gray-500 text-gray-900 rounded-t-md focus:outline-none focus:shadow-outline-blue focus:border-blue-300 focus:z-10 sm:text-sm sm:leading-5" placeholder="Full Name" />                  </div>                  <div class="-mt-px">                <input aria-label="Email address" name="email" type="email" required class="appearance-none rounded-none relative block w-full px-3 py-2 border border-gray-300 placeholder-gray-500 text-gray-900 rounded-t-md focus:outline-none focus:shadow-outline-blue focus:border-blue-300 focus:z-10 sm:text-sm sm:leading-5" placeholder="Email address" />              </div>
查看完整描述

2 回答

?
開滿天機(jī)

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

當(dāng)表單從瀏覽器發(fā)送到您的服務(wù)器時(shí),沒有為它到達(dá)而定義的POST路由,但表單使用了該路由。嘗試以下更改。/registerroutes/web.phpPOST


HTML:


<form class="mt-8" action="/register/create" method="POST">

網(wǎng)站.php


Route::post('/register/create', 'Auth\RegisterController@create')->name('register');

其次,Register控制器的create()方法不是Request從路由接收對象,而是一個(gè)未指定的名為 的數(shù)組$data。


將此添加到use控制器頂部的語句中


use Illuminate\Http\Request;

然后像下面這樣改變create(array $data)方法,所以它注入Request對象$request而不是array $data. 最后,您應(yīng)該使用框架并調(diào)用實(shí)例all()上的方法來在數(shù)據(jù)庫中創(chuàng)建記錄。$request


    /**

     * Create a new user instance after a valid registration.

     *

     * @param  Request $request

     * @return \App\User

     */

    protected function create(Request $request)

    {

        return User::create($request->all());

    }


查看完整回答
反對 回復(fù) 2022-12-03
?
絕地?zé)o雙

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

也許您沒有將模型存儲在數(shù)據(jù)庫中。嘗試dump and die -> dd()一步一步地在您的create()方法中獲取數(shù)據(jù),以了解您是否正在從視圖中接收數(shù)據(jù)。就像是:


protected function create(array $data)

{

    // first if the $data is not empty

    dd($data);


    // then if the user is created

    $user = User::create([

        'name' => $data['name'],

        'email' => $data['email'],

        'password' => Hash::make($data['password']),

    ]);

    dd($user);


    return $user;

}

如果數(shù)組不為空但 $user 為空,則問題可能來自數(shù)據(jù)庫,這意味著您沒有成功連接到數(shù)據(jù)庫。


.env使用數(shù)據(jù)庫連接值修改您的文件。


查看完整回答
反對 回復(fù) 2022-12-03
  • 2 回答
  • 0 關(guān)注
  • 123 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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