我無法在VueJS中找到格式化數字的方法。我發現的所有內容都是格式化貨幣的builtin currency filter和vue-numeric,需要修改才能看起來像一個標籤。然後你不能用它來顯示迭代的數組成員。如何在VueJS中格式化數字
3
A
回答
7
安裝numeral.js:
npm install numeral --save
定義自定義過濾器:
<script>
var numeral = require("numeral");
Vue.filter("formatNumber", function (value) {
return numeral(value).format("0,0"); // displaying other groupings/separators is possible, look at the docs
});
export default
{
...
}
</script>
使用它:
<tr v-for="(item, key, index) in tableRows">
<td>{{item.integerValue | formatNumber}}</td>
</tr>
+2
雖然可能更好地移動過濾器功能之外的需求。 – Cobaltway
2
低兼容的瀏覽器,但仍然Intl.NumberFormat()
,默認情況下使用:
...
created: function() {
let number = 1234567;
console.log(new Intl.NumberFormat().format(number))
},
...
//console -> 1 234 567
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/NumberFormat
相關問題
- 1. 如何在AngularJS中格式化數字
- 2. 如何在ios中格式化數字
- 3. 如何在JavaScript中格式化數字?
- 4. Go - 如何格式化數字數字
- 5. 如何在Android上格式化數字
- 6. 如何在angularjs中複數化和格式化一個數字
- 7. 如何用格式化器在java中格式化字符串
- 8. 如何在Google可視化中結合數字格式和格式格式?
- 9. 如何格式化數字? php函數
- 10. 如何在RDLC中格式化數字單元格報告
- 11. 如何在grid.table中格式化數字和單元格?
- 12. 如何在Excel中格式化多行數字單元格?
- 13. 如何在表達式語言中格式化數字?
- 14. 如何在DataRepeater中格式化數字或字符串?
- 15. 如何在輸入字段中動態格式化數字?
- 16. 如何格式化給定格式的數字字符串?
- 17. 如何在PHP中格式化數組?
- 18. 如何在ASP.NET中格式化數據
- 19. 如何在php中格式化數值?
- 20. 如何將數字格式化爲reportviewer?
- 21. 如何使用JavaScript格式化數字?
- 22. 如何格式化這些數字?
- 23. 如何格式化數字使用jquery
- 24. 如何格式化數字.00到0.00?
- 25. 如何在C#中以美式和歐式風格格式化數字?
- 26. 如何在XSLT中將字符串格式化爲Pascal格式?
- 27. 如何通過Vuejs Datepicker在laravel中格式化日期接收器
- 28. 如何在ruby中格式化數組中的字符串?
- 29. 在Dojo中格式化數字
- 30. 在ios中格式化數字
注意存在Vue2沒有內置過濾器。 – Cobaltway