Can not post the nested object json to node express body parser

南笙酒味 提交于 2019-12-04 14:51:32

I think, it's not clear on the documenatation. I've spent hours to find it. Anyway..

You should change your body-parser option to extended: true like the below.

app.use(bodyParser.urlencoded({ extended: true));

https://github.com/expressjs/body-parser?_ga=1.163627447.940445150.1418712389#bodyparserurlencodedoptions

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!