Skip to content

Latest commit

 

History

History
executable file
·
15 lines (10 loc) · 276 Bytes

File metadata and controls

executable file
·
15 lines (10 loc) · 276 Bytes

json

-- 测试json字符串转成lua对象
object = Json:toTable( '{"a":false, "b":true, "c":{}, "d":0, "f":1 }' );

print("1:",object);

print( "2:",Json:toString(object) )

-- 测试Lua对象转成native
dic = viewController:testJson(object);
print("3:",dic)