如何使用NodeJS

时间:2016-08-02 08:59:17

标签: javascript json node.js crud

如何使用NodeJS用新的更新对象替换旧的json对象?

现在,当我更新json文件时,它会使用旧文件保存新数据。

JSON:

[ {
    "id": 1,
    "name": "Sven",
    "phone": "123123"
  },
  {
    "id": 2,
    "name": "Martin",
    "phone": "2342342"
  } ]

这是我的代码:

var operation = POST.operation; // POST request comes with operation = update/insert/delete


        if (operation == 'update') {
            fs.readFile("file.json", "utf8", function (err, data) {

                var jsonFileArr = [];
                jsonFileArr = JSON.parse(data); //Parse the data from JSON file                    
                var haveId = jsonFileArr.some(function (obj){ // Checks if the POST request have the same id as JSON file
                    return obj.id == POST.id;
                })

                if (haveId) {  // if true

                    var updateData = []; // Array with POST data
                    updateData.push({
                        id: POST.id,
                        name: POST.name,
                        phone: POST.phone,
                    })
                    jsonFileArr.push(updateData);
                    var newUsers = JSON.stringify(jsonFileArr);
                    fs.writeFile("file.json", newUsers, "utf8");
                    console.log(err);
                }
            })                
        }

我应该使用delete object但是如何指定应删除哪个对象?

因此,当我更新id为1的数据时,它会删除旧的id / Name / phone并写入新数据。

1 个答案:

答案 0 :(得分:2)

我对你的问题的假设是你在一个文件中有多个对象。所以解决这个问题的简单方法是

GL

我认为这更好,而不是使用一些,获得匹配的索引并直接替换。

      if (operation == 'update') {
        fs.readFile("file.json", "utf8", function (err, data) {

            var jsonFileArr = [];
            jsonFileArr = JSON.parse(data); //Parse the data from JSON file
            var haveId = jsonFileArr.some(function (obj){ // Checks if the POST request have the same id as JSON file
                return obj.id == POST.id;
            })

            if (haveId) {  // if true
                var updateData = []; // Array with POST data
                updateData.push({
                    id: POST.id,
                    name: POST.name,
                    phone: POST.phone,
                })

                for(let Arr of jsonFileArr){
                  if (Arr.id == POST.id){
                    let currentIndex = jsonFileArr.indexOf(Arr);
                    jsonFileArr.splice(currentIndex,1,updateData) //removing the old object and adding the new one
                  }
                }

                var newUsers = JSON.stringify(jsonFileArr);
                fs.writeFile("file.json", '', "utf8",function(err,res){  //Making the file empty
                  if(!err){
                    fs.writeFile("file.json", newUsers, "utf8",function(err,res){ //Writing the whole object back
                      if(err)console.log(err);
                      console.info(res);
                    });
                  }else{
                    console.log(err);
                  }
                });

            }
        })
    }

....然后写回文件