Cjson.Encode table转json

文章目录
  1. 1. 功能
  2. 2. 语法
  3. 3. 参数
  4. 4. 返回值
  5. 5. 示例
  6. 6. 备注

功能

table数据转换json文本

语法

结果 = Cjson.Encode(table数据)

参数

参数 数据类型 解释
table数据 需要转换的table数据

返回值

字符串 ,返回table数据对应的json文本。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Import "Cjson.lua"
Import "zm.luae"

Dim json, table
json = "{""name"":""紫猫"",""联系"":{""QQ"":[3,4,5,9,1,1,2,2,0]},""url"":""m.zimaoxy.com""}"

// json数据转换table
table = Cjson.Decode(json)
// 输出table内容
TracePrint zm.VarInfo(table)

// table数据转换json
json = Cjson.Encode(table)
// 输出json内容
TracePrint json

备注

例子中的zm插件请前往 zm.About 介绍与下载 下载。