摘要:是一種文本格式,有兩個規則一行就是一行以分割。一行之內以分割中處理不含漢字的字符串保存的結果中處理包含漢字的字符串家鄉河南結果頁面中處理非漢字頁面中處理漢字欄位欄位欄位值值值參考文章端導出文件使用標簽
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