摘要:是一种文本格式,有两个规则一行就是一行以分割。一行之内以分割中处理不含汉字的字符串保存的结果中处理包含汉字的字符串家乡河南结果页面中处理非汉字页面中处理汉字栏位栏位栏位值值值参考文章端导出文件使用标签
csv是一种文本格式,有两个规则:
1. 一行就是一行以 分割。 2. 一行之内以","分割1. node中处理不含汉字的字符串
var fs = require("fs"); const aaa = "name,age allen,29"; fs.writeFile("file.csv", aaa, function(err) { if (err) throw err; console.log("file saved"); });
保存的结果:
2. node中处理包含汉字的字符串var fs = require("fs"); const aaa = "name,age,家乡 allen,29,河南"; fs.writeFile("file.csv", "ufeff"+aaa, function(err) { if (err) throw err; console.log("file saved"); });
结果:
3. 页面中处理非汉字download