cocos2d-x lua table与json的转换

前端之家收集整理的这篇文章主要介绍了cocos2d-x lua table与json的转换前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

cocos2d-x lua table与json的转换

version: cocos2d-x 3.6


1.引入json库

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
原文链接:https://www.f2er.com/cocos2dx/342762.html

猜你在找的Cocos2d-x相关文章