当前位置: 首页 > 文档资料 > MooTools 中文文档 >

Json帮助

优质
小牛编辑
131浏览
2023-12-01

Object: JSON

JSON解码器和编码器。

JSON Method: encode

转换一个对象或数组为JSON字符串。

语法:

var myJSON = JSON.encode(obj);

参数:

  1. obj - (object) 转换为字符串的对象。

返回:

  • (string) JSON字符串。

示例:

var fruitsJSON = JSON.encode({apple: 'red', lemon: 'yellow'}); // returns: '{"apple":"red","lemon":"yellow"}'

JSON Method: decode

转化一个JOSON字符串到JavaScript对象.

语法:

var object = JSON.decode(string[, secure]);

参数:

  1. string - (string) 要转化的字符串。
  2. secure - (boolean, optional: defaults to false) 如果设置为true,检查是否有危险的语法,如有发现则返回null。

返回:

  • (object) 通过JSON字符串表示的对象。

示例:

var myObject = JSON.decode('{"apple":"red","lemon":"yellow"}'); // returns: {apple: 'red', lemon: 'yellow'}