laravel5.2使用它的登入&註冊功能時,註冊頁面提交後沒有發生跳轉
给我你的怀抱
给我你的怀抱 2017-05-16 16:53:53
0
2
760

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頁。

给我你的怀抱
给我你的怀抱

全部回覆(2)
给我你的怀抱

form裡加一個'method'=>'POST' 試試。

習慣沉默

請問 解決了嗎

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板