ToJSON: Difference between revisions
Jump to navigation
Jump to search
m (Seperate the feature line from what the function actually does.) |
mNo edit summary |
||
Line 2: | Line 2: | ||
{{Server client function}} | {{Server client function}} | ||
{{New feature/item|3.0120|1.2|| | {{New feature/item|3.0120|1.2|| | ||
Available client side in 1.2 and onwards | Available client side in 1.2 and onwards. | ||
}} | }} | ||
Revision as of 15:43, 14 September 2013
Available client side in 1.2 and onwards.
This function converts a single value (preferably a Lua table) into a JSON encoded string. You can use this to store the data and then load it again using fromJSON.
Syntax
string toJSON ( var value )
Required Arguments
- var: An argument of any type. Arguments that are elements will be stored as element IDs that are liable to change between sessions. As such, do not save elements across sessions as you will get unpredictable results.
Returns
Returns a JSON formatted string.
Example
This example shows how you can encode an array. The string json should equal "[ { "1": "dogs", "mouse": "food", "cat": "hungry", "birds": 4 } ]" after executed.
local json = toJSON ( { "dogs", cat = "hungry", mouse = "food", birds = 4 } )
Requirements
This template will be deleted.
See Also
- getMaxPlayers
- getServerConfigSetting
- getServerHttpPort
- getServerName
- getServerPassword
- getServerPort
- isGlitchEnabled
- setGlitchEnabled
- setMaxPlayers
- setServerConfigSetting
- setServerPassword
- shutdown