为什么bodyParser.json()不起作用?

时间:2017-04-26 09:37:16

标签: javascript angularjs json node.js

我正在使用Node JS和Express构建应用程序。

在我的应用中,我使用以下内容,

// middlewares
app.use(bodyParser.urlencoded({ extended: true }))
app.use(bodyParser.json())
app.use(express.static('../web'))
app.use(morgan('dev'))

首先是app.get(), app.post()

当我使用Postman时,我的应用程序运行良好。它正确地从后端获取数据。但是,当我使用Google Chrome网络浏览器时,req.body中的app.get/post()无效。它显示{}。这就是为什么我无法从数据库中获取数据的原因。使用前端Angular JS。

请求有效负载如下所示enter image description here

0 个答案:

没有答案