美文网首页
JSON文件去重

JSON文件去重

作者: Chris__Liu | 来源:发表于2020-06-08 18:01 被阅读0次
const fs = require("fs");

fs.readFile("./input.json", "utf-8", (err, data) => {
  const temp = JSON.parse(data);
  let hash = {};
  for (let key in temp) {
    if (!hash[key]) {
      hash[key] = temp[key];
    }
  }
  fs.writeFile("output.json", JSON.stringify(hash), (err) => {
    if (err) {
      return console.error(err);
    }
    console.log("数据写入成功!");
  });
});

相关文章

网友评论

      本文标题:JSON文件去重

      本文链接:https://www.haomeiwen.com/subject/zpaazhtx.html