通过node.js写一个get类型接口
作者:互联网
先建立数据和代码存放的地址
如下:
参考代码如下:
// server.js
const http = require('http');
const filePath = path.join(__dirname, 'db', 'data.json')
const app = http.createServer((req, res) => {
if (req.url === '/getList' && req.method=== 'GET') {
fs.readFile(filePath, 'utf8', (err, data)=>{
res.end(data)
})
} else {
res.end('error');
}
});
app.listen(8083, () => {
console.log(8083);
});
说明:
-
注意:类型
-
req.method 可以判断请求的类型
-
res.end()的参数只能是字符串(或者是buffer),而不能是对象
标签:node,const,类型接口,get,res,req,end,http,data 来源: https://blog.csdn.net/laoli360/article/details/120274707