ToJSON: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{Server | {{Server function}} | ||
This function converts one or more variables into a [[JSON]] encoded string. You can use this to store the data and then load it again using [[fromJSON]]. | |||
==Syntax== | ==Syntax== | ||
<!-- NOTE: don't use 'special' names for variable names, e.g. you shouldn't be writing things like 'player player, vehicle vehicle', instead write something like 'player thePlayer, vehicle vehicleToGetInto'. This is less confusing and prevents the syntax highlighting being odd --> | <!-- NOTE: don't use 'special' names for variable names, e.g. you shouldn't be writing things like 'player player, vehicle vehicle', instead write something like 'player thePlayer, vehicle vehicleToGetInto'. This is less confusing and prevents the syntax highlighting being odd --> | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
string toJSON( var arguments ... ) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
===Required Arguments=== | ===Required Arguments=== | ||
*'''arguments:''' A list of arguments 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=== | ||
Returns a JSON formatted string. | |||
==Example== | ==Example== | ||
This example shows how you can encode an array. The string json should equal ''"["cat", "mouse", {cat:"hungry",mouse:"food"}]" after executed. | |||
This example | |||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
local json = toJSON ( "cat", "mouse", {cat="hungry",mouse="food"} ) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
==See Also== | ==See Also== | ||
{{Server_functions}} | {{Server_functions}} | ||
[[Category:Needs_Example]] <!-- leave this until the example is completed. --> | [[Category:Needs_Example]] <!-- leave this until the example is completed. --> | ||
[[Category:Incomplete]] <!-- leave this unless you complete the function --> | [[Category:Incomplete]] <!-- leave this unless you complete the function --> |
Revision as of 01:31, 20 December 2007
This function converts one or more variables into a JSON encoded string. You can use this to store the data and then load it again using fromJSON.
Syntax
string toJSON( var arguments ... )
Required Arguments
- arguments: A list of arguments 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 "["cat", "mouse", {cat:"hungry",mouse:"food"}]" after executed.
local json = toJSON ( "cat", "mouse", {cat="hungry",mouse="food"} )