admin管理员组文章数量:1340990
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.
本文标签: javascriptPass array as query stringStack Overflow
版权声明:本文标题:javascript - Pass array as query string - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743628962a2512779.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论