1

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

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

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>
4

1 回答 1

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) 在我的模板上看起来不错,我有相同的代码。你能发布更多信息吗?

于 2013-01-24T18:25:34.400 回答