我尝试在* ngFor循环中输入一个
由于
答案 0 :(得分:0)
由于您还没有提供问题的复制品,假设您的项目模板循环有点像这样,
<item *ngFor="let element of list" [ngClass]="{ 'item-selected': element === selectedItem }"></item>
在您的组件中,
list : any[]; // or the type of the list
// 'selectedItem' gets assigned the value of the current selected item everytime you select an item from the 'ngFor' loop's list of items.
如果你展示你的代码可能是某人可以指出它而不是概括它。在上面的模板中,当ngClass
循环中的当前.item-selected
为element
时,ngFor
会有条件地添加类selectedItem
。
有关ngClass
here的更多信息。希望它有所帮助。