admin管理员组文章数量:1345700
This seems like a no brainer but surely there is either an internal js method or a jquery one to take a string like:
intTime=1324443870&fltOriginalAmount=0.00&strOriginalCurrency=GBP
...then a lot more vals and turn it into a JSON object?
I had a dig around this site and google and surprisingly drew blanks... Anyone got an easy way to do this?
This seems like a no brainer but surely there is either an internal js method or a jquery one to take a string like:
intTime=1324443870&fltOriginalAmount=0.00&strOriginalCurrency=GBP
...then a lot more vals and turn it into a JSON object?
I had a dig around this site and google and surprisingly drew blanks... Anyone got an easy way to do this?
Share Improve this question edited Dec 21, 2011 at 5:33 Timofey Stolbov 4,6313 gold badges41 silver badges46 bronze badges asked Dec 21, 2011 at 5:15 AlexAlex 3,7915 gold badges40 silver badges60 bronze badges 1- 2 There are no such thing as a "JSON object". Do you mean an object, or a JSON string? – Guffa Commented Dec 21, 2011 at 5:26
2 Answers
Reset to default 11jQuery BBQ does exactly this. See $.deparam
, "The opposite of jQuery.param, pretty much."
> var obj = $.deparam('intTime=1324443870&fltOriginalAmount=0.00&strOriginalCurrency=GBP')
> JSON.stringify(obj)
'{"intTime":"1324443870","fltOriginalAmount":"0.00","strOriginalCurrency":"GBP"}'
i used this hack...
$.parseJSON('{"' + qs.replace(/&/g, '","').replace(/=/g, '":"') + '"}');
demo here http://jsbin./niqaw/
本文标签: javascripthow do I convert a querystring into a json object in jqueryStack Overflow
版权声明:本文标题:javascript - how do I convert a querystring into a json object in jquery - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743770342a2536009.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论