图一是post
表单,提交后node
后台通过req.body
获取的数据是上图,这让我很困扰。
导致不能使用req.body.movie.title
取到数据。
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
使用bodyParser
仍然没有效果。
请问大神 这是什么情况?
巴扎黑2017-04-17 14:50:50
もちろん、req.body.movie.title は取得できません。投稿されているのは req.body.movie[title] です。この movie[title] は単なる文字列であり、オブジェクトではありません。 ? .