📅  最后修改于: 2023-12-03 15:25:14.452000             🧑  作者: Mango
在 React JS 中,我们常常需要在 UI 中将数字转化为字符串,比如将数字作为文本展示在页面上等。
JavaScript 中,number 类型有一个 toString() 方法,可以将数字转换为字符串。
const num = 123;
const str = num.toString();
console.log(typeof str, str); // 输出结果为 string 123
在 React 文件中使用:
const num = 123;
const str = num.toString();
return <div>{str}</div>;
使用模板字符串也可以将数字转换为字符串。
const num = 123;
const str = `${num}`;
console.log(typeof str, str); // 输出结果为 string 123
在 React 文件中使用:
const num = 123;
const str = `${num}`;
return <div>{str}</div>;
在 React JS 中,将数字转换为字符串非常简单,只需要使用 toString() 或模板字符串即可。如果需要进行数值计算,应该将字符串转换为数字再进行操作。