同问
开发者问题收集
如何根据对象属性字符串过滤“ngFor”循环内的项目
我需要通过更改下拉列表中的类别来过滤ngFor循环中的项目。因此,当从列表中选择特定类别时,它应该只列出包含相同类别的项目。HTML 模板:<select><option *ngFor="let model of models">{{model.category}}</option></select><ul class="models"><li *ngFor="let model of model
string
angular
typescript
filter
ngfor
2016-11-19
«
1
»