我正在使用 Laravel 4 的类在整个应用程序中捕获 Sentry 异常,并使用该函数App::error
将数据传递回模板。withErrors()
简单路线:
routes.php
Route::post('/login...
...
$credentials = array(
'email' => Input::get('email'),
'password' => Input::get('password')
);
$user = Sentry::authenticate($credentials);
// Exception thrown...
然后捕获异常:
exceptions.php
App::error(function(Cartalyst\Sentry\Users\WrongPasswordException $e) {
return Redirect::back()->withErrors(array('failed' => 'Email or password is incorrect'))->withInput();
});
在视图中:
/views/login/login.blade.php
@if ($errors->has('failed'))
<strong>{{ $errors->first('failed') }}</strong>
@endif
问题是,当您在尝试登录失败后刷新页面时,这些错误仍然存在,因此您会看到它们两次。第二次刷新,他们已经清除了。输入也是如此(用 传递withInput()
)。
如果在路由中(而不是在 中App:error
)发现错误,则一切正常。我应该使用这些App::error
方法手动清除存储的数据吗?