node.js - nodejs使用express接收表单post数据出现问题
高洛峰
高洛峰 2017-04-17 14:48:50
0
2
832


图一是post表单,提交后node后台通过req.body获取的数据是上图,这让我很困扰。
导致不能使用req.body.movie.title取到数据。

app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));

使用bodyParser仍然没有效果。
请问大神 这是什么情况?

高洛峰
高洛峰

拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...

reply all(2)
巴扎黑

Of course you can’t get req.body.movie.title. The post is req.body.movie[title]. This movie[title] is just a string, not an object at all. How can you get it? .

黄舟
req.body['movie[title]']
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!