从查询生成器结果列表中设置下拉列表的默认值Laravel 5.1

时间:2015-09-29 08:49:57

标签: php laravel drop-down-menu query-builder

我正在制作我的表单的编辑页面,我有一个选择下拉列表,但我需要设置选择的值,因为它是一个编辑表单。我是这样做的:

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

默认选中。

1 个答案:

答案 0 :(得分:0)

您需要将默认值传递给select()

{!! Form::select('agent_id', $agent_options, $defaultValue, array('class' => 'form-control', 'id' => 'agent_id', 'required' => 'required')) !!}}

$defaultValue替换为默认情况下需要选择的值。

参考DOC