1.get方法

  • 通过 req.query解析出来

2.post方法

  • 1.req.body 解析出来
//bodyParser
app.use(express.urlencoded({ extended: true, limit: '50mb' })); 

3. :id

app.post('/get_json/:id', function (req, res) {
  // 响应块代码
})
  • req.params获取

Tesla
34 声望1 粉丝