node.js - Express 框架的body-parser的用法
怪我咯
怪我咯 2017-04-17 16:10:33
0
1
792
怪我咯
怪我咯

走同样的路,发现不同的人生

reply all(1)
洪涛

Wait, I overturned

It first performs formatting constraints according to the options you gave when using, and then converts it once according to json. If there is no error, then calls urlencoded to receive and format other content of the form.

When converting json, the content-type is used to specify the format by default. Check whether the request header is json. If not, it defaults to an empty value. Otherwise, format json, and then follow the urlencoded logicvar type = opts.type || 'application/json'

The source code is as follows

https://github.com/expressjs/...

function bodyParser (options) {
  var opts = {}

  // exclude type option
  if (options) {
    for (var prop in options) {
      if (prop !== 'type') {
        opts[prop] = options[prop]
      }
    }
  }

  var _urlencoded = exports.urlencoded(opts)
  var _json = exports.json(opts)

  return function bodyParser (req, res, next) {
    _json(req, res, function (err) {
      if (err) return next(err)
      _urlencoded(req, res, next)
    })
  }
}
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!