'bodyParser' 在节点 v14 中已弃用
'bodyParser' is deprecated in node v14
代码:
const express = require("express");
const bodyParser = require("body-parser");
const app = express();
app.use(bodyParser.urlencoded({extended:true}));
app.get("/",function(req,res){
res.sendFile(__dirname + "/index.html");
})
app.listen(3000,function(){
console.log("Server started on port 3000");
})
我已经使用 npm i body-parser 安装了 body-parser 并且需要它。但它显示“bodyParser”在 app.use(bodyParser)
中用交叉线弃用
节点版本:v14.17.1
body-parser
在节点 14 中未弃用,在 Express.
中弃用
app.use(express.urlencoded({extended: true}));
代码:
const express = require("express");
const bodyParser = require("body-parser");
const app = express();
app.use(bodyParser.urlencoded({extended:true}));
app.get("/",function(req,res){
res.sendFile(__dirname + "/index.html");
})
app.listen(3000,function(){
console.log("Server started on port 3000");
})
我已经使用 npm i body-parser 安装了 body-parser 并且需要它。但它显示“bodyParser”在 app.use(bodyParser)
中用交叉线弃用节点版本:v14.17.1
body-parser
在节点 14 中未弃用,在 Express.
app.use(express.urlencoded({extended: true}));