1. 程式人生 > >v-for 使用 filters 進行資料處理

v-for 使用 filters 進行資料處理

使用filters將資料四捨五入保留兩位小數

 <li class="food" v-for="(item,index) in carts">
 	 <div>
		<span style="color: #F03C03">{{item.price*item.count | filtersValue}}</span>
	</div>
 </li>
//過濾器 toFixed 四捨五入 保留兩位
filters:{
	filtersValue:function(value){
		return value.toFixed
(2); },},

toFixed() 方法可把 Number 四捨五入為指定小數位數的數字。

NumberObject.toFixed(num)
引數 描述
num 必需。規定小數的位數,是 0 ~ 20 之間的值,包括 0 和 20,有些實現可以支援更大的數值範圍。如果省略了該引數,將用 0 代替。