Laravel使用默认值设置创建表单选择

时间:2013-04-18 17:31:29

标签: php forms laravel

控制器:

$employee = Staff::where('staff_id', '=', $id)->where('user_role', '=','Employee')->first();
$emp_loc = $employee->locations()->pivot()->only('loc_id');
$locations_list = Location::lists('address1', 'loc_id'); //get list of locations

查看:

<!--location -->
<div class="control-group">
<label class="control-label">Location</label>
<div class="controls">
@if(isset($emp_loc))
{{ Form::select('location', $locations_list, $emp_loc) }}
@else
{{ Form::select('location', $locations_list) }}
@endif
</div>
</div>

第三个参数是选择框的默认值,但它始终以第一个值开始。

源代码:

<div class="control-group">
<label class="control-label">Location</label>
<div class="controls">
<select name="location"><option value="1">Bethel</option><option value="2">Brooklyn</option><option value="3">Germantown</option><option value="4">Memphis</option><option value="5">Brooklyn</option></select>        </div>
</div>

没有设置默认值?

1 个答案:

答案 0 :(得分:1)

这可能是数据库配置问题。

返回迁移文件并确保正确设置了外键。这就是我要正确设置它们的方法:

Schema::create('pivot', function(Blueprint $table) {
  $table->increments('id');
  $table->unsignedInteger('loc_id');
  $table->foreign('loc_id')
   ->references('id')->on('location_list');
  .....
}

Schema::create('location_list', function(Blueprint $table) {
  $table->increments('id');
  .....
}

此外,请注意在Firefox中selected值未正确显示。要解决此问题,请将下拉列表更改为(在Blade中):

Form::select('location', $locations_list, $emp_loc, array('autocomplete'=>'off'))

最后一部分是Firefox的奇怪行为