我使用ng-bind来绑定价格
的值 <td><span ng-bind="'$' o.Price"></span></td>
但它的价值是 281.96000000000004 所以如何在视图中限制此值,因此它只需要十进制后的两位数。 喜欢 281.96。
答案 0 :(得分:5)
使用number
过滤器
<td><span ng-bind="'$' + (o.Price | number : 2)"></span></td>
答案 1 :(得分:2)
您可以使用货币过滤器(如果它是以美元计的价格):
<td><span>{{ o.Price | currency }}</span></td>
答案 2 :(得分:1)
你可以使用角度过滤器| number : fractionSize
小数点后两位使用:
<td><span ng-bind="'$' o.Price| number : 2"></span></td>