lua之坑

本文最后更新于:2022年7月23日 下午

lua 解析json中的null值返回类型为userdata,不可作为if xxx条件判空

image-20210727231339355
image-20210727231339355

table用作map,key需要为string,否则会作为数组插入

image-20210727231339355

1
2
3
local columnType = 3
_M.videoRspCache[columnType] = resp 数组索引 3 为resp
_M.videoRspCache[tostring(columnType)] = resp 是map

image-20210727231339355
image-20210727231339355


lua之坑
https://yangshuai-uestc.github.io/2022/07/23/lua之坑/
作者
Catsyang
发布于
2022年7月23日
许可协议