在Express4应用程序中,我已经做过:
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
然后在post方法中,我访问req.body:
router.post('/', function (req, res, next) {
console.log(req.body)
res.json({ status: true })
});
它只是一个字符串,而不是json:
POST /email?name=test&email=abc@abc.com
为什么?