您好,登錄后才能下訂單哦!
使用node怎么實現一個增刪改查接口?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
node實現簡單的增刪改查接口的全部代碼如下:
// 數據存儲在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怎么實現一個增刪改查接口的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。