javascript 如何在Express中解析请求的正文?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 如何在Express中解析请求的正文?相关的知识,希望对你有一定的参考价值。

// npm install --save body-parser

const express = require('express')
const app = express()

const bodyParser = require('body-parser')

//This example shows a middleware function with no mount path. The function is executed every time the app receives a request.
app.use(bodyParser.json()) // Parse json format

app.use('/insert', (req, res) => {
  console.log(req.body)
  res.send('insert!')
})
// npm install --save body-parser

const express = require('express')
const app = express()

const bodyParser = require('body-parser')

//This example shows a middleware function with no mount path. The function is executed every time the app receives a request.
app.use(bodyParser.urlencoded({extended:false})) // Parse x-form-www-urlencoded

app.use('/insert', (req, res) => {
  console.log(req.body)
  res.send('insert!')
})

以上是关于javascript 如何在Express中解析请求的正文?的主要内容,如果未能解决你的问题,请参考以下文章

NodeJS:Express 框架实战解析视频教程

node-express 如何在 URL 查询字符串中传递 DATE 参数以及如何解析它

javascript 如何在Express中提供图像?

javascript 如何在Express中返回json响应?

javascript 如何在express-graphql包中激活调试工具?

使用 Express 框架在 Nodejs 中解析 JSON 请求 [重复]