问题描述
试图从中找到如何制作
但谷歌搜索并只获得 {foo:bar}
?...& foo = bar& ... jQuery.params
,这恰恰相反。任何建议请(内置的javascript函数, jquery , underscore.js - 一切顺利)?或者,我是否需要自己实施(不是很麻烦,只是试图不重新发明轮子)?
Tried to find how to make {foo:"bar"}
from ?...&foo=bar&...
but googled and got only to jQuery.params
which does the opposite. Any suggestions please (built-in javascript function, jquery, underscore.js - all goes)? Or, do I need to implement it by myself (not a big hassle, just trying not to reinvent the wheel)?
推荐答案
你有Ben Alman的 jQuery BBQ
和一个 jQuery.deparam
。它被描述为与jQuery.param完全相反。
You have Ben Alman's jQuery BBQ
and a jQuery.deparam
in it. It is described as The opposite of jQuery.param, pretty much.
第一个例子就是你需要的。
First example is exactly what you need.
这篇关于将查询字符串反序列化为JSON对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!