5

如何在多选中设置默认选定值。我从数据库获取current_optionsall_options从数据库中获取,我想再次更新current_options和发送新值做数据库。

更新数据库有效,但是当我刷新页面时,没有选择任何选项。

current_options = [{id:1, name:'name1'}];                    #from database
all_options = [{id:1, name:'name1'},{id:2, name:'name2'}];   #from database

我的模板:

<select multiple name="type" [(ngModel)]="current_options">
    <option  *ngFor="let option of all_options" [ngValue] = "option">
        {{option.name}}
    </option>
</select>`
4

4 回答 4

6

您应该使用一组选定的项目

<select [(ngModel)]="selectedElement" multiple>
     <option *ngFor="let type of types" [ngValue]="type"> {{type.Name}}</option>
</select>

我选择的项目如下

selectedElement:any= [
                {id:1,Name:'abc'},
                {id:2,Name:'abdfsdgsc'}];

现场演示

于 2017-12-07T09:58:52.297 回答
5

如果您将值作为 id 数组传递给 ngModel

let idArrary = ["1"];

<select multiple name="type" [(ngModel)]="idArrary">
    <option  *ngFor="let option of all_options" [ngValue] = "option">
        {{option.name}}
    </option>
</select>

`

于 2017-12-07T10:37:20.500 回答
2

current_options = [all_options[0]] 初始化输入的默认值。

Current_options 需要使用包含 all_options 中存在的相同对象的数组进行初始化。

我从另一个答案中分叉了Plunker来说明它。

请记住:

{id:1, name:'name1'} !== {id:1, name:'name1'}

编辑:

假设 current_options 已经包含您从服务器接收到的一些值:

current_options = current_options.map((current_option) => {
   return all_options.find((all_option) => current_option.id === all_option.id);
})

或者可能更高效:

for (let i in all_options) { 
   for (let j in current_options) { 
      if (all_options[i].id === current_options[j].id ) { 
         current_options[j] = all_options[i]; 
      } 
   } 
}

编辑: 根据角度文档,您可以使用 compare with 函数来指定如何假设两个对象相等。

<select multiple [compareWith]="compareFn" ...>
</select>

compareFn(c1: Category, c2: Category): boolean {
  return c1 && c2 ? c1.id === c2.id : c1 === c2;
}
于 2017-12-07T10:01:05.430 回答
1

如果您想使用 ngModel 创建多个选择和选项并设置默认值和两种方式绑定其工作代码

<div  *ngFor="let options of optionsArray; let in = index">
 <br>
 <select [(ngModel)]="res[in]" >
 <option  [ngValue]="option" *ngFor="let option of options.options; let i =index">


{{option}}
</option>
</select>
 {{res[in]}}
</div>
{{res}}

export class ExComponent implements OnInit {
public res=[];
 public optionsArray = [
   {id: 1, text: 'Sentence 1', options:['kapil','vinay']},
   {id: 2, text: 'Sentence 2', options:['mukesh','anil']},
   {id: 3, text: 'Sentence 3', options:['viky','kd']},
  {id: 4, text: 'Sentence 4', options:['alok','gorva']},
]
ngOnInit() 
{
this.optionsArray.forEach(data=>{
 this.res.push(data.options[0]);
})
}
于 2018-12-28T12:54:05.157 回答