我正在使用express 4.0,我知道主体解析器已经从express核心中取出,我正在使用推荐的替换,但我正在获得
bodyParser:使用单独的json/urlencoded中间件server.js:15:12
对扩展解析显式指定"extended: true" node_modules/ Body-parser /index.js:74:29
我在哪里可以找到这些所谓的中间件?或者我不应该得到这个错误?
var express = require('express');
var server = express();
var bodyParser = require('body-parser');
var mongoose = require('mongoose');
var passport = require('./config/passport');
var routes = require('./routes');
mongoose.connect('mongodb://localhost/myapp', function(err) {
if(err) throw err;
});
server.set('view engine', 'jade');
server.set('views', __dirname + '/views');
server.use(bodyParser());
server.use(passport.initialize());
// Application Level Routes
routes(server, passport);
server.use(express.static(__dirname + '/public'));
server.listen(3000);
检查这个答案
条带webhook错误:没有找到匹配有效载荷的期望签名
// Use JSON parser for all non-webhook routes
app.use((req, res, next) => {
if (req.originalUrl === '/webhook') {
next();
} else {
express.json()(req, res, next);
}
});
// Stripe requires the raw body to construct the event
app.post('/webhook', express.raw({type: 'application/json'}), (req, res) => {
const sig = req.headers['stripe-signature'];
let event;
try {
event = stripe.webhooks.constructEvent(req.body, sig, webhookSecret);
} catch (err) {
// On error, log and return the error message
console.log(`❌ Error message: ${err.message}`);
return res.status(400).send(`Webhook Error: ${err.message}`);
}
// Successfully constructed event
console.log('✅ Success:', event.id);
// Return a response to acknowledge receipt of the event
res.json({received: true});
});
这意味着使用bodyParser()构造函数已被弃用,截至2014-06-19。
app.use(bodyParser()); //Now deprecated
现在需要分别调用这些方法
app.use(bodyParser.urlencoded());
app.use(bodyParser.json());
等等。
如果你仍然得到一个urlencoded警告,你需要使用
app.use(bodyParser.urlencoded({
extended: true
}));
扩展配置对象键现在需要显式传递,因为它现在没有默认值。
如果您正在使用Express >= 4.16.0,则在Express .json()和Express .urlencoded()方法下重新添加了body解析器。
我是在加法的时候发现的
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({
extended: true
}));
有帮助,有时取决于您的查询决定express如何处理它。
例如,可能是在URL中传递参数,而不是在正文中传递参数
在这种情况下,您需要捕获正文参数和url参数,并使用任何可用的参数(在下面的情况中优先使用正文参数)
app.route('/echo')
.all((req,res)=>{
let pars = (Object.keys(req.body).length > 0)?req.body:req.query;
res.send(pars);
});