我正在使用Express 3.4.4,我的node.js conf看起来像这样:
Node.js的
app.configure(function () {
app.use(express.bodyParser());
app.use(express.cookieParser());
app.use(checkCookie);
app.use(express.static(__dirname + '/public'));
});
的login.html
<div class="row" id="content">
<form class="row" action="/login" method="post">
<div><input type='text' name='username'/></div>
<div><input type='password' name='password' /></div>
<div><input class="btn" type="submit" value="Log in"></div>
</form>
</div>
发布请求看起来像这样
Content-Length:27
Content-Type:application/x-www-form-urlencoded
表单中包含所需的信息。
我尝试过app.use(require('connect')。bodyParser());但没有成功。
有什么想法吗?