js.evalNS: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(2 intermediate revisions by one other user not shown)
Line 9: Line 9:


|usage=
|usage=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
js.evalNS(namespace, expression, arg1, arg2...)
js.evalNS(namespace, expression, arg1, arg2...)
</source>
</syntaxhighlight>


'''Parameters'''
'''Parameters'''
Line 24: Line 24:
|example=
|example=
Using {{code|js.eval}} on an {{code|expression}}.
Using {{code|js.eval}} on an {{code|expression}}.
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[r: js.evalNS("demo", "var a = [1,2,3]; a[1] + (MTScript.getMTScriptCallingArgs()[0]|0)", 5)]
[r: js.evalNS("demo", "var a = [1,2,3]; a[1] + (MTScript.getMTScriptCallingArgs()[0]|0)", 5)]
</source>
</syntaxhighlight>
'''Output:'''
'''Output:'''
<source lang="mtmacro">
<syntaxhighlight lang="mtmacro">
7
7
</source>
</syntaxhighlight>





Latest revision as of 18:42, 15 March 2023

 This article describes a feature or macro function that is experimental and may be subject to change.

js.evalNS() Function

Introduced in version 1.10.0
Evaluates a string as a javascript expression. Supports ECMA 2021 standard. For security, access to native types and external resources are limited. Similarly, all arrays passed in to the javascript environment are shallow copied, so changes to the array do not directly change MapTool's state. Unlike js.eval(), js.evalNS() does not wrap the fragment in an anonymous function. The statement in tail position (usually the last statement) is the return value for js.evalNS().

Usage

js.evalNS(namespace, expression, arg1, arg2...)

Parameters

  • namespace - The namespace to run the fragment in. It will be created if it does not yet exist.
  • expression - A valid javascript fragment.
  • arg1, arg2... - Any. Will be converted to the equivalent javascript type as needed. Arguments are accessible via the args variable.
  • return - Any primitive type; Complex types are converted to (JSON) strings.

Example

Using js.eval on an expression.
[r: js.evalNS("demo", "var a = [1,2,3]; a[1] + (MTScript.getMTScriptCallingArgs()[0]|0)", 5)]

Output:

7

See Also