0

在 Laravel 4 中使用 Route::post 时遇到问题。

这是我的 User.php(laravel 模型)代码:

class User extends Eloquent implements UserInterface, RemindableInterface {

  public static function validate($input)
  {
    $rules = array(
    'email' => 'Required|Between:3,64|Email|Unique:users',
    'password' => 'Required|AlphaNum|Between:4,8|Confirmed',
    'password_confirmation' => 'Required|AlphaNum|Between:4,8'
    );

    $v = Validator::make($input, $rules);
  }
}

这是我的 routes.php 代码:

Route::post('register', function()
{
  $v = User::validate(Input::all());

      if ($v->passes()){
      $u = new User();
      $u->email = Input::get('email');
      $u->password = Hash::make(Input::get('password'));
      $u->save();
      Auth::login($u);

      return Redirect::to('createprofile');
    }
    else{
      return Redirect::to('register')->withErrors($v->getMessageBag());
    }
});

这是我的 register_user.blade.php 代码:

@section('content')
    {{ Form::open(array('url' => '/register', 'method' => 'post')) }}
    {{ Form::text('email') }}
    {{ Form::label('email', 'Your Email') }}</br>
    {{ Form::password('password'); }}
    {{ Form::label('password', 'Your Password') }}</br>
    {{ Form::password('password_confirmation'); }}
    {{ Form::label('password_confirmation', 'Confirm Your Password') }}</br>
    {{ Form::submit('Go') }}
  {{ Form::close() }}
@stop

问题似乎是当表单提交到 Route::post 时它无法识别

$v = User::validate(Input::all()) 

作为一个有效的对象,而不是给我一个非对象上的成员函数 pass() 的调用。

var_dump($v)

等于null。

有谁知道这里的问题是什么?User::validate() 是从 User 模型调用函数的正确方法吗?

4

1 回答 1

2

您忘记返回您的 Validator 实例;

class User extends Eloquent implements UserInterface, RemindableInterface {

  public static function validate($input)
  {
    $rules = array(
    'email' => 'Required|Between:3,64|Email|Unique:users',
    'password' => 'Required|AlphaNum|Between:4,8|Confirmed',
    'password_confirmation' => 'Required|AlphaNum|Between:4,8'
    );

    return Validator::make($input, $rules);
  }
}
于 2013-08-09T17:43:27.303 回答