json函数

函数:jsonDecode 将json字符串转换为table

函数说明 : 将json字符串转换为table
函数方法 : jsonDecode(json 文本型);
返回值 : 数组 table
支持版本 : 苹果3.4.0-1 以上,安卓4.1.0以上

参数类型说明
json文本型需要转换的json字符串

示例

table1 = jsonDecode('{"name":"touchelf"}');
logDebug(table1.name);

函数:jsonEncode 将table转为json字符串

函数说明 : 将table转为json字符串
函数方法 : jsonEncode(数组 table);
返回值 : json 文本型
支持版本 : 苹果3.4.0-1 以上,安卓4.1.0以上

参数类型说明
table数组需要转换成json的数组

示例

table1 = {
  name='touchelf',sex='man',age=18
}
json = jsonEncode(table1);
logDebug(json);