How to display review stars in angular5 view using font-awesome
问题 I have the review stars value in the database. Example 2.5 for an item. I want to display this in the template using font-awesome. <ul class="rating inline-ul"> <li><i class="fa fa-star amber-text"></i></li> <li><i class="fa fa-star amber-text"></i></li> <li><i class="fa fa-star amber-text"></i></li> <li><i class="fa fa-star"></i></li> <li><i class="fa fa-star"></i></li> </ul> What will be the way to display the stars in accordance with the review value? I used *ngIf, but that seems like