如何在多选中设置默认选定值。我从数据库获取current_options
和all_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>`