如何访问req body作为json?

时间:2017-03-30 14:50:34

标签: express

在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

为什么?

0 个答案:

没有答案