Json
From GiderosMobile
(Redirected from Category:Json)
Supported platforms:
Available since: Gideros 2013.09
Description
Provides Lua table serialization and deserialization to and from string in json format.
Example
Gets user's geolocation
require('json')
local loader = UrlLoader.new("http://ip-api.com/json")
loader:addEventListener(Event.COMPLETE, function(event)
local receivedTable=json.decode(event.data)
print(receivedTable.countryCode)
print(receivedTable.timezone)
end)
Methodsjson.decode returns Lua table from provided json encoded string |
EventsConstants |