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

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')

{!! Form::open(['url'=>'/auth/register']) !!} 

{!! Form::label('name','Name:') !!} {!! Form::text('name',null,['class'=>'form-control']) !!}

{!! Form::label('email','Email:') !!} {!! Form::email('email',null,['class'=>'form-control']) !!}

{!! Form::label('password','Password:') !!} {!! Form::password('password',['class'=>'form-control']) !!}

{!! Form::label('password_confirmation','Password:') !!} {!! Form::password('password_confirmation',['class'=>'form-control']) !!}


{!! Form::submit('注册',['class'=>'btn btn-primary form-control']) !!} {!! Form::close() !!}


@stop
按照網路上的說法,即使是沒有在AuthController.php中加上protected $redirectPath='指定頁路徑',也應該跳到laravel的home頁才對。問題是它連跳轉都不跳轉,資料庫內也沒有接到資料。是怎麼回事?求各位幫忙看看。新人一個,提前先謝謝大家!
根據網路上的方法,我在AuthController.php中加上 protected $redirectPath='/articles';也沒有跳到articles頁。

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

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

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

    習慣沉默

    請問 解決了嗎

      最新下載
      更多>
      網站特效
      網站源碼
      網站素材
      前端模板
      關於我們 免責聲明 Sitemap
      PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!