Say, we have a query string that looks like this:
"param1:'test1' && param2:'test2'"
I would like to turn it into an object map, like this:
{param:test1, param2:test2}
How could that be done? This seems like a very common use case.
|
Say, we have a query string that looks like this:
I would like to turn it into an object map, like this:
How could that be done? This seems like a very common use case. |
||||
|
|
|
I usually use the "search and don't replace" method:
Example: http://jsfiddle.net/bcJ9s/ |
|||||||||
|
|
As long as it's in that format, i.e. only has string values (and the strings don't contain
Note that the strings are of course still strings: |
||||
|
|
|
Use the string.split function to break the string into the parts that you need - something like this...
|
|||||||||||||
|
|
Use string processing (As mentioned by @Guffa, it will fail if strings themselves contained
Note:
|
|||||
|