将查询字符串反序列化为JSON对象

将查询字符串反序列化为JSON对象

本文介绍了将查询字符串反序列化为JSON对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

试图从中找到如何制作 {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对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-04 14:34