uniapp怎么把a1变成a1
可以使用toString方法将数字转换为字符串:
let a = 1;
a = a.toString();
console.log(a); // 输出 '1'
或者使用模板字符串拼接的方式:
let a = 1;
a = `'${a}'`;
console.log(a); // 输出 '1'
以上两种方法都可以将数字1转换为字符串'1'。
原文地址: https://www.cveoy.top/t/topic/iqxC 著作权归作者所有。请勿转载和采集!