在express中如何獲取post提交方式的表單數據

express中並無提供獲取post提交方式的表單數據的API,因此咱們須要用到第三方插件:

  • 下載
$ npm install body-parser
複製代碼
  • 加載
var bodyParser = require('body-parser')
複製代碼
  • 配置
app.use(bodyParser.urlencoded({extended:false}))
app.use(bodyParser.json())
複製代碼
  1. 只要加入這個配置,則在req這個請求對象上新加一個屬性:body
  2. 咱們就能夠直接經過req.body來獲取post方式表單提供的數據
相關文章
相關標籤/搜索