Do you know a fast and simple way to encode a javascript object into a string that I can pass via GET?
No jQuery, no other frameworks, just plain Javascript :)
|
Do you know a fast and simple way to encode a javascript object into a string that I can pass via GET? No jQuery, no other frameworks, just plain Javascript :)
| |||
|
feedback
|
|
like this?
// edit: this one also converts recursive objects (using php "array" notation for the query string)
| |||||||||||||||||
feedback
|
|
jQuery has a function for this, if you're already using it u can use that: http://api.jquery.com/jquery.param/ | |||
|
feedback
|
|
use JSON. take a look at this question for ideas on how to implement. | |||
feedback
|
|
Do you need to send arbitrary objects? If so, GET is a bad idea since there are limits to the lengths of URLs that user agents and web servers will accepts. My suggestion would be to build up an array of name-value pairs to send and then build up a query string:
| |||
|
feedback
|