Query:
Automatically parse the query-string when available,populating the req.query object usingqs.
req.query
Examples:
connect() .use(connect.query()) .use(function(req, res){ res.end(JSON.stringify(req.query)); });
The options passed are provided to qs.parse function.
options
module.exports = function query(options){ return function query(req, res, next){ if (!req.query) { req.query = ~req.url.indexOf('?') ? qs.parse(parse(req).query, options) : {}; } next(); }; };
Query:
Automatically parse the query-string when available,
populating the
req.query
object usingqs.
Examples:
The
options
passed are provided to qs.parse function.Source