express 路由url參數獲取

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獲取
相關文章
相關標籤/搜索