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.
Traiter les données de tableau au sein d’une structure JSON.
developer:deserializeJArray(jsonArray)
jsonArray
string
{object}
local json = '[{"id":1},{"id":2}]' local arr = deserializeJArray(json) for _, item in ipairs(arr) do global:printMessage("ID de l'élément : " .. item.id) end