Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Convertir une chaîne JSON en objet Lua.
developer:toObject(jsonString)
jsonString
string
object
local json = '{"name":"Item","value":100}' local obj = toObject(json) global:printMessage(obj.name .. " = " .. obj.value)