有以下形式:
<!DOCTYPE html>
<html>
<head>
<title><%= title %></title>
<link rel='stylesheet' href='/stylesheets/style.css' />
</head>
<body>
<% include menu %>
<h1><%= title %></h1>
<p>Fill in the form below to add a new post.</p>
<% include messages %>
<form action='/post' method='post'>
<p>
<input type='text' name='entry[title]' placeholder='Title' />
</p>
<p>
<textarea name='entry[body]' placeholder='Body'></textarea>
</p>
<p>
<input type='submit' value='Post' />
</p>
</form>
</body>
</html>
Express.js代码部分:
// view engine setup
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'ejs');
// uncomment after placing your favicon in /public
//app.use(favicon(__dirname + '/public/favicon.ico'));
app.use(logger('dev'));
app.use(bodyParser.json());
app.use(session({secret: 'SomeSecretKey'}));
app.use(bodyParser.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, 'public')));
但是当我发布此表单时,我得到以下json响应(通过res.json({body: req.body})
)
{"body":{"entry[title]":"111","entry[body]":"222"}}
我不能使用req.body.entry.title(错误:无法获取未定义的标题)。我该如何解决?谢谢!
答案 0 :(得分:3)
将extended
设置为true
,而qs
模块将用于解析支持嵌套的正文。
app.use(bodyParser.urlencoded({ extended: true }));
答案 1 :(得分:0)
我不确定Node in Action的最新版本是什么,但我发现很多练习已经过时了,只是为了注意。
如果你想要一个非常快速的解决方案,只需删除条目[]。所以制作名称标题和正文然后你会得到......
{"body":{title:"111",body:"222"}}