Difference between revisions of "Json.decode"
From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2013.09<br/> === Description === Returns Lua table from provided json encoded string <source lang="lua"> = json.decode(jsondata,) </so...") |
|||
Line 4: | Line 4: | ||
Returns Lua table from provided json encoded string | Returns Lua table from provided json encoded string | ||
<source lang="lua"> | <source lang="lua"> | ||
− | + | json.decode(jsondata) | |
</source> | </source> | ||
− | '''jsondata | + | '''jsondata''': (string) Data in json format which to deserialize to Lua table ''''''<br/> |
Revision as of 10:20, 23 August 2018
Available since: Gideros 2013.09
Description
Returns Lua table from provided json encoded string
json.decode(jsondata)
'jsondata: (string) Data in json format which to deserialize to Lua table '