Small, compact, and efficient query string parser library that is packed with features and two layers of caching.
- Caching on both decoding and parameters
- Supports hash query string
#hello?page=3
- Supports passing custom query strings
- Supports Array / Object Parameters
user[]="jim"&user[]="bob"
- Supports empty management
&&
- Supports declaration parameters without values
name&hello="world"
- Supports repeated parameters
param=1¶m=2
- Clean and readable source
- Supports building queries using simple object notation.
query.build
data
Object
Query Data in Object Notation.
To create the query ?name=Query.js&tags=query&tags=string&tags=encode&tags=builder
we invoke query.build
like so:
query.build({ name: 'Query.js', tags: [ 'query', 'string', 'encode', 'builder' ]});
query.parse
Parses current or given query string, building both the query and decoding cache objects.
param
Object
opts Optional options objectoption
Boolean
rebuild Forces parser to rebuild storage and decode cache objectsoption
String
query Custom query stringoption
String
name Parameter to look for in storage cache
return
Mixed
If name option exists returnsString
orundefined
, otherwise returnsObject
, orundefined
query.parse();
View example on jsfiddle: http://jsfiddle.net/xvd5d/3/
query.get
Sugar syntax for query.parse
fetching of specific parameter
param
String
name Paramater to look for in storage cacheparam
Boolean
rebuild Tells builder to force rebuilding storage and decode cache objects
// Build and fetch specific name assumes query.build was never ran.
query.get('param');
query.get('anotherParam'); // This will be cached result.
View example on jsfiddle: http://jsfiddle.net/xvd5d/4/
Maybe you've already parsed a query and wish to parse a new query or rebuild the cache, you can do this two different ways:
// First is through the builder
query.parse({ rebuild: true });
// Second is through the sugar `get` method
query.get('param', true);
View example on jsfiddle: http://jsfiddle.net/VbM7M/2/
Maybe you wish to parse a custom query string, to do this use query.build
:
query.parse({ rebuild: true, query: 'param=not+again×tamp=250826092386' });
query.get('param');
Returns specific parameter requested, rebuilds current cache, and has a custom query in one call.
query.parse({ name: 'param', rebuild: true, query: 'param=not+again×tamp=250826092386' });
View example on jsfiddle: http://jsfiddle.net/VbM7M/3/
The MIT License (MIT)
Copyright (c) 2013 Nijiko Yonskai nijikokun@gmail.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.