我无法在VueJS中找到格式化数字的方法。我找到的只是用于格式化货币的builtin currency filter和vue-numeric,需要进行一些修改才能看起来像标签。然后你不能用它来显示迭代的数组成员。
答案 0 :(得分:18)
安装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>
答案 1 :(得分:14)
JavaScript为此提供了内置功能。</ p>
如果您确定变量始终是Number而不是“ number String”,则可以执行以下操作:
{{ num.toLocaleString() }}
如果您想安全,请执行以下操作:
{{ Number(num).toLocaleString() }}
来源:https://forum.vuejs.org/t/filter-numeric-with-comma/16002/2
答案 2 :(得分:9)
与浏览器的兼容性低,但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
答案 3 :(得分:4)
以防万一,如果您真的想做一些简单的事情:
<template>
<div> {{ commission | toUSD }} </div>
</template>
<script>
export default {
data () {
return {
commission: 123456
}
},
filters: {
toUSD (value) {
return `$${value.toLocaleString()}`
}
}
}
</script>
如果您想变得更复杂,请使用this代码或以下代码:
在main.js
import {currency} from "@/currency";
Vue.filter('currency', currency)
在currency.js
const digitsRE = /(\d{3})(?=\d)/g
export function currency (value, currency, decimals) {
value = parseFloat(value)
if (!isFinite(value) || (!value && value !== 0)) return ''
currency = currency != null ? currency : '$'
decimals = decimals != null ? decimals : 2
var stringified = Math.abs(value).toFixed(decimals)
var _int = decimals
? stringified.slice(0, -1 - decimals)
: stringified
var i = _int.length % 3
var head = i > 0
? (_int.slice(0, i) + (_int.length > 3 ? ',' : ''))
: ''
var _float = decimals
? stringified.slice(-1 - decimals)
: ''
var sign = value < 0 ? '-' : ''
return sign + currency + head +
_int.slice(i).replace(digitsRE, '$1,') +
_float
}
和template
中的
<div v-for="product in products">
{{product.price | currency}}
</div>
答案 4 :(得分:1)
您总是可以尝试vue-numeral-filter。
答案 5 :(得分:1)
我来自智利,并添加自定义格式...例如:$ 50.000.000,56
安装npm安装数字--save
import numeral from 'numeral'
// load a locale
numeral.register('locale', 'cl', {
delimiters: {
thousands: '.',
decimal: ','
},
abbreviations: {
thousand: 'm',
million: 'M',
billion: 'B',
trillion: 'T'
},
ordinal: function (number) {
return number === 1 ? 'er' : 'ème'
},
currency: {
symbol: '$'
}
})
// switch between locales
numeral.locale('cl')
之后添加自定义格式...
Vue.filter('formatNumberMoney', function (value) {
return numeral(value).format('0,0.')
// displaying other groupings/separators is possible, look at the docs
})
答案 6 :(得分:1)
尝试这个。如果您使用的是vue.js 2
<template>
{{lowPrice | currency}}
</template>
<script>
data:(){
return {lowPrice: 200}
}
filters:{
currency(value) {
return new Intl.NumberFormat("en-US",
{ style: "currency", currency: "USD" }).format(value);
}
}
</script>
vue.js 3不再支持过滤器,因此您可以在计算中使用此逻辑
<template>
{{currency}}
</template>
<script>
data:(){
return {lowPrice: 200}
}
computed:{
currency() {
return new Intl.NumberFormat("en-US",
{ style: "currency", currency: "USD" }).format(this.lowPrice);
}
}
</script>