laravel5.2中使用它的登入註冊功能寫了個註冊登入的功能,但奇怪的是註冊頁面在提交後沒有發生跳轉是怎麼回事?
這是我的routes.php的程式碼:
//认证路由
Route::get('auth/login', 'Auth\AuthController@getLogin');
Route::post('auth/login', 'Auth\AuthController@postLogin');
// 注册路由...
Route::get('auth/register', 'Auth\AuthController@getRegister');
Route::post('auth/register', 'Auth\AuthController@postRegister');
Route::get('auth/logout', 'Auth\AuthController@getLogout');
這是我的register.php的程式碼:
@extends('app')
@section('content')
<p class="col-md-4 col-md -offset-4">
{!! Form::open(['url'=>'/auth/register']) !!}
<p>
{!! Form::label('name','Name:') !!}
{!! Form::text('name',null,['class'=>'form-control']) !!}
</p>
<p>
{!! Form::label('email','Email:') !!}
{!! Form::email('email',null,['class'=>'form-control']) !!}
</p>
<p>
{!! Form::label('password','Password:') !!}
{!! Form::password('password',['class'=>'form-control']) !!}
</p>
<p>
{!! Form::label('password_confirmation','Password:') !!}
{!! Form::password('password_confirmation',['class'=>'form-control']) !!}
</p>
<br/>
{!! Form::submit('注册',['class'=>'btn btn-primary form-control']) !!}
{!! Form::close() !!}
</p>
@stop
按照網路上的說法,即使是沒有在AuthController.php中加上protected $redirectPath='指定頁路徑',也應該跳到laravel的home頁才對。問題是它連跳轉都不跳轉,資料庫內也沒有接到資料。是怎麼回事?求各位幫忙看看。 新人一個,提前先謝謝大家!
根據網路上的方法,我在AuthController.php中加上 protected $redirectPath='/articles';也沒有跳到articles頁。
form裡加一個'method'=>'POST' 試試。
請問 解決了嗎