我正在制作我的表单的编辑页面,我有一个选择下拉列表,但我需要设置选择的值,因为它是一个编辑表单。我是这样做的:
public function edit($id)
{
$form = Form::find($id);
$agent_options = array('' => 'Choose One') + DB::table('agents')->lists('name','id');
$campaign_options = array('' => 'Choose One') + DB::table('campaigns')->lists('name','id');
$query = "SELECT a.id, a.form_id, a.metrics_id, a.response, b.response as responseoption, b.metrics_name, b.description, b.question, a.remarks FROM qcv.forms_responses a INNER JOIN metrics b ON a.metrics_id = b.id WHERE form_id = $id;";
$metric = DB::connection('mysql')->select($query);
return view('form.edit')->with(array('form'=> $form, 'agent_options' => $agent_options, 'campaign_options' => $campaign_options, 'metric' => $metric));
}
在我的视图中
<div class="col-md-6">
{!! Form::select('agent_id', $agent_options, '',array('class' => 'form-control', 'id' => 'agent_id', 'required' => 'required')) !!}
</div>
让我们使用我的$agent_options
下拉列表,它会在我的座席表中提取座席列表,但在我的视图中,如何根据座席ID设置默认值?我们说
agend_id = 1
默认选中。
答案 0 :(得分:0)
您需要将默认值传递给select()
{!! Form::select('agent_id', $agent_options, $defaultValue, array('class' => 'form-control', 'id' => 'agent_id', 'required' => 'required')) !!}}
将$defaultValue
替换为默认情况下需要选择的值。
参考DOC