如何在下拉菜单中显示值?

时间:2018-12-04 00:40:27

标签: javascript jquery laravel laravel-5 eloquent

每当我编辑内容时,我都希望在下拉列表中显示一个值,但是我不知道如何显示它。有人可以帮我吗?

下拉

在这里,有一个下拉列表,其中包含将国家/地区值插入数据库中时的值。但是,当我编辑下拉菜单时,保存的国家/地区将被删除。

{{ Form::select('from_location', trans('countries'), null, ['class' => 'form-control', 'placeholder' => 'Select where you From']) }}

更新控制器

$aircraftFlights = Aircraft::find($id);
$aircraftFlights ->destination= $request->input('destination');
$aircraftFlights ->save();

2 个答案:

答案 0 :(得分:1)

您正在将null传递给当前值的字段。

尝试一下:

{{Form::select('from_location', trans('countries'), !empty($aircraftFlights) ? $aircraftFlights->destination : null ,['class' => 'form-control', 'placeholder' => 'Select where you From'])}}<br>

您可以在此处参考以获取更多详细信息:

https://laravelcollective.com/docs/5.4/html#drop-down-lists

希望这会有所帮助

答案 1 :(得分:0)

{{Form::select('from_location', trans('countries'),null,['class' => 'form-control', 'placeholder' => 'Select where you From', 'value' => $your_value_here])}}