使用Laravel 4 + 3 Bootstrap验证后保持模态并显示错误

时间:2014-04-17 13:22:11

标签: twitter-bootstrap laravel modal-dialog validation

阅读文章:Keep modal open after validation redirect 允许在验证后立即打开模态框,但是,显示没有发生错误,只显示表单,我相信这是因为操作再次调用jquery表单,因为我正在使用远程函数bootstrap 3模态。

要解决的提示,请在模态窗口中显示错误。

控制器:

if ($validacao->fails()) :
   $input = Input::all();
   $input['autoOpenModal'] = true;
   return Redirect::back()->withErrors($validacao)->withInput($input);
endif;

模态表格:

<div>
   {{ Form::label( 'inputEmail1', 'Email', array( 'class' => 'col-lg-2 control-label' ) ) }}
   <div>
      {{ Form::email( 'email', '', array( 'class' => 'form-control', 'placeholder' => 'Email' ) ) }}
      {{ $errors->first('email', '<p class="help-block text-danger">:message</p>') }}
   </div>
</div>

Jquery行动:

<script type="text/javascript">
   if ({{ Input::old('autoOpenModal', 'false') }}) {
      $('#remoteModal').modal({show: true, remote: '{{ URL::to('users/inserir') }}'});
   }
</script>

我认为这个遥控器正在加载引导模式,就像一个新的调用,因此他的$errors->first()没有显示任何内容。

感谢您的帮助

1 个答案:

答案 0 :(得分:0)

您无需在此处进行任何远程抓取。该表单已存在于页面上的模态中。

正如您所关注的帖子所说:

    if ({{ Input::old('autoOpenModal', 'false') }}) {
        //JavaScript code that open up your modal.
        $('#remoteModal').modal('show');
    }