我正在使用Laravel 4的App::error
类来捕获整个应用程序中的Sentry异常,并使用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
方法手动清除存储的数据吗?
答案 0 :(得分:0)
我总是使用Session :: flash()来显示错误。 Flash将(对于一个请求)将数据设置(并自动取消设置)到您的会话中。所以你可以像
一样App::error(function(Cartalyst\Sentry\Users\WrongPasswordException $e) {
Session::flash('error', 'Email or password is incorrect.');
return Redirect::back()->withInput();
});
并在你看来抓住这个:
@if($message = Session::get('success'))
<div class="alert-box success">
{{ $message }}
</div>
@endif
@if($message = Session::get('error'))
<div class="alert-box alert">
{{ $message }}
</div>
@endif
在相关的说明中,我建议遵循通常的try-catch表示法:
try {
// do things that might throw an Exception here...
} catch(Cartalyst\Sentry\Users\UserExistsException $e) {
// catch the Exception...
Session::flash('error', Lang::get('register.user_already_exists'));
return Redirect::action('RegisterController@getIndex')->withInput();
}
...因为您目前使用App::error()
做的事情可能比这更麻烦。