JSON
json.object
创建 new table marked as a JSON object,让 Real JSON encoder 将其作为 object 处理。
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
创建 new table marked as a JSON object,让 Real JSON encoder 将其作为 object 处理。
json.object(source?: table): table
local profile = json.object({
name = "Guest",
active = true,
})
local empty = json.object()
print(json.encode(profile))
print(json.encode(empty))