- req.params.xxxxx 从path中的变量
- req.query.xxxxx 从get中的?xxxx=中
- req.body.xxxxx 从post中的变量
Post下别忘了:
app.use(bodyParser.json()); // for parsing application/jsonapp.use(bodyParser.urlencoded({ extended: true })); // for parsing application/x-www-form-urlencoded
更详细: