Laravel形式问题

时间:2013-01-23 13:33:17

标签: php twitter-bootstrap laravel

在laravel中使用Form类有两个问题。发现很难习惯使用数组传递的参数我正在使用twitter bootstrap:

  1. 将类添加到选择类型不起作用?
  2. 使用单选按钮正确输出
  3. 1

     {{ Form::select('title', array('Mr', 'Mrs', 'Ms', 'Miss', 'Master', 'Dr',   'Prof'), array('class' => 'input-small')) }}
    

    2

    <div class="control-group">
    <div class="controls">
      {{ Form::label('gender', 'Gender', array('class' => 'control-label')) }}
      <label class="radio">
      {{ Form::radio('gender', 'Male') }} Male
      </label>
    
      <label class="radio">
      {{ Form::radio('gender', 'Female') }} Female
      </label>
     <p class="help-block"> Please enter your gender</p>
    </div>
    </div>
    

1 个答案:

答案 0 :(得分:2)

1)您传递的是错误的值

public static function select($name, $options = array(), $selected = null, $attributes = array())

您必须传递所选的值,会话或Input::old('name')

{{ Form::select('title', array('Mr', 'Mrs', 'Ms', 'Miss', 'Master', 'Dr', 'Prof'), $selected = NULL,  array('class' => 'input-small')) }}

2)我的模板看起来很好,我有相同的代码。你可以发布更多信息吗?