当前位置: 首页 > 工具软件 > Lua CJSON > 使用案例 >

使用lua CJSON库如何将空table编码成数组

柯曦
2023-12-01

先看下面一段代码

 local cjson = require "cjson" 
 print(cjson.encode({dogs = {}})) -- 输出 {"dogs":{}} 

lua的CJSON库默认会将空table编码成{},如果dogs是一个数组呢?当dogs为空的时候,如何让它返回一个空数组?很简单,加多一句代码就可以了

 local cjson = require "cjson" 
 cjson.encode_empty_table_as_object(false) 
 print(cjson.encode({dogs = {}})) -- 输出 {"dogs":[]} 
 类似资料: