Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

body-parser查询form表单中类型post[title]这样的格式的内容issue

$
0
0

这是html:

<form method="post" class="create-post">

title<input type="text" style="width:100%;" name="post.title" value="<%= model.title %>">

content<textarea name="post.content" style="width:100%;height:150px;"><%= model.content %></textarea>

<input type="submit" value="Post">

</form>

这是部分node代码 app.use(bodyParser.urlencoded({ extended: true }));

**问题:在node查询到有body.post.title, body.post.content,但你直接获取这两个内容是会异常,因为没有post这个对象啊。 ** 我参考了之前同学发的帖子 https://cnodejs.org/topic/5586292501d3ce0d73d68fec我已经照他的做法做了,将 extended: true,总是依旧。 所以,这问题到底怎么解决,新手求解答,谢谢。


Viewing all articles
Browse latest Browse all 14821

Trending Articles