-
-
Save corazzi/c181e451f1872846d9ca5269018a909e to your computer and use it in GitHub Desktop.
parseQueryParams - parse query string parameters into an object [non-jQuery version]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
parseQueryParams = function (query) { | |
var re = /([^&=]+)=?([^&]*)/g; | |
var decodeRE = /\+/g; | |
var decode = function (str) { | |
return decodeURIComponent(str.replace(decodeRE, " ")); | |
}; | |
var params = {}, e; | |
while (e = re.exec(query)) { | |
var k = decode(e[1]), v = decode(e[2]); | |
if (k.substring(k.length - 2) === '[]') { | |
k = k.substring(0, k.length - 2); | |
(params[k] || (params[k] = [])).push(v); | |
} else params[k] = v; | |
} | |
return params; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Works with
grouped[]=values
, too