1.接收前台数据返回数据
1)npm install body-parser(HTTP请求体解析中间件)
2) app.js引入模块body-parser
var bodyParser = require(‘body-parser‘);
app.use(bodyParser,urlencoded({extended:false}));
app.use(bosyParser.json());
app.post(‘/123‘,function(req,res){
if(!req.body){
return res.sendStatus(400)
}else{
console.log(req.body);
res.send(返回前台的数据);
}
})
*************get请求接口点击这里点击打开链接**************
原文地址:https://www.cnblogs.com/diegomock/p/8951752.html
时间: 2024-10-20 00:19:55