如图我想实现一个字体选择效果,字体数据是从后台获取的。我用了ngFor循环显示,但是需要用到ng-selected实现选择字体,不清楚该如何用ngFor结合ng-selected.代码如下<select id="fontstyle" name="fontstyle" class="selectpicker"(change)="setFont($event.target.value);">
<option *ngFor='let item of dto.fontStyles' [value]="item.font">{{item.name}}</option>
</select>不清楚ng-selected该如何实现,请教下平台大神
2 回答
慕少森
TA贡献2019条经验 获得超9个赞
如果要拿到选中的 option
的值,在 select
添加双向绑定变量就行了:[(ngModel)]="selectedFont"
,angular
不使用前代 ng-select
的用法了,selectedFont
是你自己定义的储存字体的变量,然后你就可以拿它去干别的事情了。
添加回答
举报
0/150
提交
取消