Laravel Form-Model Binding多选默认值

时间:2015-06-21 22:12:53

标签: php html laravel binding blade

我试图将默认值绑定到选择标记。 (在"编辑视图")。

我知道这应该很容易,但我想我错过了一些东西。

我有:

User.php (我的用户模型)

...
    public function groups() 
{
    return $this->belongsToMany('App\Group');
}

public function getGroupListAttribute()
{
    return $this->groups->lists('id');
}
...

UserController.php (我的控制人员)

...
public function edit(User $user)
{
    $groups = Group::lists('name', 'id');

    return view('users.admin.edit', compact('user', 'groups'));
}
...

edit.blade.php (视图)

...
{!! Form::model($user, ['method' => 'PATCH', 'action' => ['UserController@update', $user->id]]) !!}
...

...
// the form should be binded by the attribute 'group_list' created
// at the second block of 'User.php'
// performing a $user->group_list gets me the correct values
{!! Form::select('group_list[]', $groups, null, [
                                'class' => 'form-control',
                                'id'    => 'grouplist',
                                'multiple' => true
                                ]) !!}
...

我在刀片上进行了虚拟测试,并得到了正确的结果:

@foreach ($user->group_list as $item)
     {{ $item }}
@endforeach

这列出了默认情况下应该选择的值。

我还尝试将$user->group_list作为Form::select中的第三个参数,但这并没有起作用......

我不知道我做错了什么......对这个有什么暗示?

修改

当我这样做时:

public function getGroupListAttribute()
{
    //return $this->groups->lists('id');
    return [1,5];
}

正确选择了该项目,

现在我知道我必须从集合中获取一个数组.. 深入挖掘.. :)

找到了

user.php的:

...
public function getGroupListAttribute()
{
    return $this->groups->lists('id')->toArray();
}
...

可能会更容易吗?

好的问候,

克里斯托夫

1 个答案:

答案 0 :(得分:2)

您不应将null放入selected defaults(第3个)参数中。

{!! Form::model($user, ['route' => ['user.update', $user->id]]) !!}

{!! Form::select(
        'group_list[]',
        $groups,
        $user->group_list,
        ['multiple' => true]
    )
!!}