Automatically parse the query-string when available,populating the req.query object.
req.query
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.queryobject.Examples
The
optionspassed are provided to qs.parse function.Source