我正在开发Angular 5应用,并且仅当我使用--prod标志进行构建时,才会出现错误“运算符'<='无法应用于类型 “字符串”和“数字””。代码如下:
<div *ngIf="rating >= 0 && rating <= 5">
...
</div>
在component.ts中
public rating:number;
当我在开发模式下构建时,没有错误并且一切正常,但是当我使用ng build --prod
进行构建时,出现以下错误:
src \ app \ components ... component.html(31,25)中的ERROR::运算符'<='无法应用于类型 “字符串”和“数字”。
我想念什么?