您好我有一个名为$crit
的数组,其中我放置了我的HTML表单组件的值
例如这个输入:
{{ Form::label('name', 'Name:', array('class'=>'label'))}}
{{ Form::text('name', isset($criteria['name'])?$crit['name']:'', array('id'=>'name', 'class'=>'input'))}}<br/>
我想对select组件做同样的事情,但我不知道如何将所选性别的值添加到我的$crit
数组中。
{{Form::label('Sex', 'Sex:', array('class'=>'label'))}}
{{Form::select('sex', $options, 'M', array('id'=>'sex'))}}
在我看来,我已经定义了数组$options
public function get_index()
{
return View::make('personal.data')
->with('options', array('M' => 'Male', 'F' => 'Female'))
}
感谢您的回答,问候
答案 0 :(得分:1)
您只需使用Input::old
,就会在重定向/错误时重新填充
{{ Form::select('sex', $options, Input::old('sex')) }}