local tb = {};
tb['tb_key1'] = 'tb_value1';
tb['tb_key2'] = 'tb_value2'
tb['tb_key3'] = 'tb_value3'
tb['tb_p1'] = {};
tb['tb_p2'] = {};
tb['tb_p3'] = {};
local tbOne = {};
tbOne['key1'] = 'value1';
tbOne['key2'] = 'value2';
tbOne['one_p_1'] = {};
tbOne['one_p_2'] = {};
for i=0,5 do
table.insert(tbOne['one_p_1'], ''..i);
table.insert(tbOne['one_p_2'], ''..i + 10);
end
table.insert(tb['tb_p1'], tbOne);
table.insert(tb['tb_p2'], tbOne);
tb['tb_p2'] = tbOne;
if _G['_load_tn_json2lua'] == nil then
ui:use('tn_json2lua');
_G['_load_tn_json2lua'] = true;
end
local sJson = json_encode(tb)
print( sJson )