美文网首页
body-parser插件

body-parser插件

作者: coffee1949 | 来源:发表于2019-06-24 12:48 被阅读0次
    var express = require('express')
    var bodyParser = require('body-parser')
    
    var app = express()
    
    // parse application/x-www-form-urlencoded
    app.use(bodyParser.urlencoded({ extended: false }))
    
    // parse application/json
    app.use(bodyParser.json())
    
    app.use(function (req, res) {
      res.setHeader('Content-Type', 'text/plain')
      res.write('you posted:\n')
      res.end(JSON.stringify(req.body, null, 2))
    })
    

    相关文章

      网友评论

          本文标题:body-parser插件

          本文链接:https://www.haomeiwen.com/subject/qjhgqctx.html