码迷,mamicode.com
首页 > 其他好文 > 详细

node实现简单的增删改查接口

时间:2019-08-22 14:39:24      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:ams   接口   log   存储   数据   文件   deluser   express   write   

// 数据存储在users.json文件中
const express = require("express");
const fs = require("fs");
const cors = require("cors");
const bodyParser = require("body-parser");
const app = express();

app.use(cors({ origin: "*" })); // fix 跨域
app.use(bodyParser.json()); // for parsing application/json
app.use(bodyParser.urlencoded({ extended: true })); // for parsing application/x-www-form-urlencoded

// 新增
app.post("/addUser", (req, res) => {
  fs.readFile("./users.json", "utf8", (err, data) => {
    if (err) {
      throw err;
    }
    data = data ? JSON.parse(data) : [];
    data.push(req.body);
    fs.writeFile("./users.json", JSON.stringify(data), err => {
      if (err) throw err;
      res.end();
    });
  });
});

// 删除
app.delete("/delUser/:id", (req, res) => {
  const id = req.params.id;
  fs.readFile("./users.json", "utf8", (err, data) => {
    data = JSON.parse(data) || [];
    const saveData = data.filter(item => item.id != id);
    fs.writeFile("./users.json", JSON.stringify(saveData), err => {
      if (err) throw err;
      res.end();
    });
  });
});

// 修改
app.put("/update/:id", (req, res) => {
  const id = req.params.id;
  const body = req.body;
  fs.readFile(__dirname + "/" + "users.json", "utf8", (err, data) => {
    const userList = (data && JSON.parse(data)) || [];
    const index = userList.findIndex(item => item.id == id);
    userList[index] = { ...userList[index], ...body };
    fs.writeFile("./users.json", JSON.stringify(userList), err => {
      if (err) throw err;
      console.log("修改");
      res.end();
    });
  });
});

// 列表查询
app.get("/listUsers", function(req, res) {
    fs.readFile(__dirname + "/" + "users.json", "utf8", function(err, data) {
      console.log(data);
      res.end(data);
    });

});


app.listen(8081, function() {
  console.log("访问地址: http://localhost:8081");
});

 

node实现简单的增删改查接口

标签:ams   接口   log   存储   数据   文件   deluser   express   write   

原文地址:https://www.cnblogs.com/hlandzpy/p/11394143.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!