Robię samouczki na temat node.js, a lekcja uczy mnie, jak utworzyć serwer za pomocą węzła. W kodzie poniżej, co robi linia connect.bodyParser()?Co robi bodyParser() w oprogramowaniu pośredniczącym connect?
var app = connect()
.use(connect.bodyParser())
.use(connect.static('public'))
.use(function (req, res) {
if (req.url === '/process') {
res.end(req.body.name + ' would repeat ' + req.body.repeat + ' times.');
} else {
res.end("Invalid Request");
}
})
.listen(3000);