📜  数据表数字格式 - Javascript (1)

📅  最后修改于: 2023-12-03 14:54:57.713000             🧑  作者: Mango

数据表数字格式 - JavaScript

在开发过程中,我们经常需要处理数字数据,通常情况下,我们需要将数值转换成字符串或格式化显示。

JavaScript 提供了丰富的数值格式化方法,同时我们也可以借助第三方库来实现更高级的数值格式化需求。

数值转换成字符串

在 JavaScript 中,我们可以使用 toString() 方法将数值转换成字符串,该方法可以接受一个参数,指定进制数。

例如:

let num = 123.456;

num.toString(); // "123.456"
num.toString(2); // "1111011.01110110001111010111000010100011110101110000101"
num.toString(8); // "173.344674154"
num.toString(16); // "7b.74bc6a7ef57b5"
数值格式化显示
toLocalString()

toLocalString() 方法可以将数值格式化为用户本地的数字字符串,该方法依赖于系统区域设置。

例如:

let num = 1234567.89;

num.toLocaleString(); // "1,234,567.89"

let num2 = 12345.67;

num2.toLocaleString('zh-Hans-CN-u-nu-hanidec'); // "一二,三四五.六七"
Number.prototype.toFixed()

toFixed() 方法可以将数值四舍五入并保留指定的小数位数,返回值为字符串类型。

例如:

let num = 123.456;

num.toFixed(); // "123"
num.toFixed(2); // "123.46"

需要注意的是,该方法在处理一些特殊情况时可能会出现错误,例如 0.1 + 0.2 等问题。我们可以借助其他库来解决这个问题。

Math.round()

Math.round() 方法可以将数值四舍五入至最接近的整数,返回值为整数类型。

例如:

Math.round(1.2); // 1
Math.round(1.5); // 2
Math.round(1.8); // 2
numeral.js

numeral.js 是一个基于 JavaScript 的数值格式化库,提供了丰富的数值格式化功能。我们可以使用该库来处理各种数值格式化需求。

例如:

numeral(1234.567).format('0,0.00'); // "1,234.57"
numeral(1000000).format('0a'); // "1m"

以上是几个常见的数值格式化方法,当然还存在许多其他的库和方法可以实现不同的需求,开发者可以根据实际情况进行使用。