cocos2dx-lua读取json文件
2018-11-02 本文已影响1人
亮亮同学
cocos2d-x技术群新群:117871561
c++技术交流群:593010226
local str = cc.FileUtils:getInstance():getStringFromFile("xxxx.json")
local ok, datatable = pcall(function()
return cjson.decode(str)
end)
if true == ok and type(datatable) == "table" then
dump(datatable, "文字", 6)
--todo
else
--todo
end