我只是想验证如下计算:
<div *ngIf="((buyForm.value.rate * buyForm.value.Units)|number:'1.8-8')<=0" class="help-block">Minimum order quantity is 0.00050000</div>
但似乎我不能像这样使用十进制管道。 Math.round可能有效,但不清楚实现。你们有什么例子吗?
答案 0 :(得分:0)
这应该有效:
{{((a * b) | number:'1.8-8') <=0 }}