This commit is contained in:
TJ Holowaychuk 2013-08-27 14:50:20 -07:00
parent 9e69922859
commit 3e0599851a

View file

@ -295,16 +295,12 @@ this.type = 'png';
### ctx.query ### ctx.query
Get parsed query-string using [qs](https://github.com/visionmedia/node-querystring). For example with the url "/shoes?page=2&sort=asc&filters[color]=blue" Get parsed query-string, for example "color=blue&size=small":
`this.query` would be the following object:
```js ```js
{ {
page: '2', color: 'blue',
sort: 'asc', size: 'small'
filters: {
color: 'blue'
}
} }
``` ```