I'm attempting to pass an array to my server via jsonp - here's a JSON example of what I'm trying to pass:
["something","another_thing",4,{"iam" : "anobject"}]
However, I'm not sure how (if it's possible) to pass an array.
I assumed it would be like this:
something&another_thing&4&[iam]=anobject
but when I pass that to querystring.parse()
in node, it gives me this:
{ '4': '',
something: '',
another_thing: '',
'[iam]': 'anobject' }
That's definitely not what I want. I can just use JSON, but this is now something I'm wondering if is possible.
I'm attempting to pass an array to my server via jsonp - here's a JSON example of what I'm trying to pass:
["something","another_thing",4,{"iam" : "anobject"}]
However, I'm not sure how (if it's possible) to pass an array.
I assumed it would be like this:
something&another_thing&4&[iam]=anobject
but when I pass that to querystring.parse()
in node, it gives me this:
{ '4': '',
something: '',
another_thing: '',
'[iam]': 'anobject' }
That's definitely not what I want. I can just use JSON, but this is now something I'm wondering if is possible.
Share Improve this question asked Oct 10, 2012 at 22:20 JesseJesse 10.5k10 gold badges64 silver badges81 bronze badges 2- 2 did you try to use JSON.stringify ? – Prog Mania Commented Oct 10, 2012 at 22:23
- I've already implemented this in my code using JSON - this is just a curiosity about what can be passed via GET queries. – Jesse Commented Oct 11, 2012 at 2:09
1 Answer
Reset to default 11If you want to pass that data structure using PHP's URI format (which is what your attempt looks like), it would look something like:
data[0]=something&data[1]=another_thing&data[2]=4&data[3][iam]=anobject
You are probably better off just passing the JSON itself though. Take the JavaScript object and run it through JSON.stringify()
and encodeURIComponent()
to get:
data=something%2Canother_thing%2C4%2C%5Bobject%20Object%5D
Then you would use querystring.parse()
, extract the data
parameter from it, then run JSON.parse()
on that value.