-
-
Save gopalkumar315/ecfb6f081d8fa00f318678c5c957e157 to your computer and use it in GitHub Desktop.
Takes a string in format "param1=value1¶m2=value2" and returns an javascript object. Improved to handle multiple values with same name and to unescape url encoded values.
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
/** | |
* $.unserialize | |
* | |
* Takes a string in format "param1=value1¶m2=value2" and returns an object { param1: 'value1', param2: 'value2' }. If the "param1" ends with "[]" the param is treated as an array. | |
* | |
* Example: | |
* | |
* Input: param1=value1¶m2=value2 | |
* Return: { param1 : value1, param2: value2 } | |
* | |
* Input: param1[]=value1¶m1[]=value2 | |
* Return: { param1: [ value1, value2 ] } | |
* | |
* @todo Support params like "param1[name]=value1" (should return { param1: { name: value1 } }) | |
* Usage example: console.log($.unserialize("one="+escape("& = ?")+"&two="+escape("value1")+"&two="+escape("value2")+"&three[]="+escape("value1")+"&three[]="+escape("value2"))); | |
*/ | |
(function($){ | |
$.unserialize = function(serializedString){ | |
var str = decodeURI(serializedString); | |
var pairs = str.split('&'); | |
var obj = {}, p, idx; | |
for (var i=0, n=pairs.length; i < n; i++) { | |
p = pairs[i].split('='); | |
idx = p[0]; | |
if (obj[idx] === undefined) { | |
obj[idx] = unescape(p[1]); | |
}else{ | |
if (typeof obj[idx] == "string") { | |
obj[idx]=[obj[idx]]; | |
} | |
obj[idx].push(unescape(p[1])); | |
} | |
} | |
return obj; | |
}; | |
})(jQuery); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment