我希望在我的网站内的特定表格中显示价格,精确到小数点后 3 位。
价格将以英镑、美元和欧元显示。
我的货币过滤器似乎自动将价格四舍五入到小数点后 2 位。
另外,如果货币是欧元,理想情况下,我想将千位分隔符自动更改为 a .
,将小数分隔符自动更改为 a ,
。
angularjs 对此有支持吗?
风景
<div ng-controller="SpotController">
<table class="header-table-spot-prices">
<thead>
<tr><th>Spot Prices</th><th>Price</th></tr>
</thead>
<tbody>
<tr ng-repeat="spot in spots">
<td>{{ spot.item }}</td>
<!-- This needs to be 3dp -->
<td>{{ spot.price | currency:spot.currency }}</td>
</tr>
</tbody>
</table>
</div>