手机浏览 RSS 2.0 订阅 膘叔的简单人生 , 腾讯云RDS购买 | 超便宜的Vultr , 注册 | 登陆

快速转换JSON数据

首页 > Javascript >

这是一个jQuery的插件,它可以使得你快速将对象等转换为JSON数据,方便你进行ajax等数据交换。

官网地址为:http://code.google.com/p/jquery-json/

官方也有例子:

JavaScript代码
  1. var thing = {plugin: 'jquery-json', version: 1.3};   
  2.   
  3. var encoded = $.toJSON(thing);              //'{"plugin": "jquery-json", "version": 1.3}'   
  4. var name = $.evalJSON(encoded).plugin;      //"jquery-json"   
  5. var version = $.evalJSON(encoded).version;  // 1.3  

基本函数也就这个五个:

This plugin exposes five new functions onto the $, or jQuery object:

  • toJSON: Serializes a javascript object, number, string, or arry into JSON.
  • compactJSON: Serializes as toJSON, but takes out some spaces, making the result that much shorter.
  • evalJSON: Converts from JSON to Javascript, quickly, and is trivial.
  • secureEvalJSON: Converts from JSON to Javascript, but does so while checking to see if the source is actually JSON, and not with other Javascript statements thrown in.
  • quoteString: Places quotes around a string, and inteligently escapes any quote, backslash, or control characters.

相信会给你的项目应用带来方便。。。




本站采用创作共享版权协议, 要求署名、非商业和保持一致. 本站欢迎任何非商业应用的转载, 但须注明出自"易栈网-膘叔", 保留原始链接, 此外还必须标注原文标题和链接.

« 上一篇 | 下一篇 »

发表评论

评论内容 (必填):