- req.params.xxxxx 从path中的变量
- req.query.xxxxx 从get中的?xxxx=中
- req.body.xxxxx 从post中的变量
Post下别忘了:
app.use(bodyParser.json()); // for parsing application/json app.use(bodyParser.urlencoded({ extended: true })); // for parsing application/x-www-form-urlencoded
更详细:http://blog.csdn.net/charlene0824/article/details/51199292
时间: 2024-10-05 05:41:37