JSON模块JSON解码(json.decode)本页总览JSON解码(json.decode) 函数 json数组 = json.decode(json字符串) 参数 json字符串 文本型 返回值 json数组 数组型 说明 用于将json 字符串 转换成 lua 数组 示例 local tab = json.decode('{"abc":"测试字符串", "bcd": 1 }')print(tab)