Express.js req.body undefined

前端 未结 30 2854
半阙折子戏
半阙折子戏 2020-11-22 12:02

I have this as configuration of my Express server

app.use(app.router); 
app.use(express.cookieParser());
app.use(express.session({ secret: \"keyboard cat\" }         


        
30条回答
  •  礼貌的吻别
    2020-11-22 12:43

    If you are using some external tool to make the request, make sure to add the header:

    Content-Type: application/json

提交回复
热议问题