Cocos2d-x   发布时间:2022-05-03  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了cocos2d-x lua table与json的转换大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

cocos2d-x lua table与json的转换

@H_618_3@version: cocos2d-x 3.6


@H_489_6@1.引入json库 @H_618_3@require("src/cocos/cocos2d/json")


2.使用json

function testJson()
    local beginTime = os.time()   

    local testTable = {}
-- [ -- { -- "UserId": "1234567890",-- "Name": "test1",-- "Icon": "www.google.com" -- },-- { -- "UserId": "1234567890",-- "Name": "test2",-- "Icon": "www.google.com" -- } -- ]     for i = 1,100 do
        table.insert(testTable,{["UserId"]="123",["Name"]="test1",["Icon"]="www.google.com"})
    end 

    -- encode     local jsonData = json.encode(allUserData)
    print("user data json:\n" .. jsonData)

    -- decode     testTable = json.decode(jsonData)

    local endTime = os.time()
    print("test time: " .. toString(endTime - beginTimE))
end

大佬总结

以上是大佬教程为你收集整理的cocos2d-x lua table与json的转换全部内容,希望文章能够帮你解决cocos2d-x lua table与json的转换所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。