今天初次用cjson这个工具,特郁闷的就是decode()这个函数。上网看是直接返回一个table,table里面有键值对。然而我调用ngx.say()来打印是会出错的。
错误示范如下:
localjson_text='[{"foo":"bar"}]' localdata=cjson.decode(json_text) ngx.say("foo:",data["foo"])--data.fooiserrortoo!
正确示范如下:
localjson_text='[{"foo":"bar"}]' localdata=cjson.decode(json_text) ngx.say("foo:",data[1]["foo"])原文链接:https://www.f2er.com/json/289651.html