WA SET CONTEXT
WA SET CONTEXT ( {* ;} object ; contextObj )
引数 | 型 | 説明 | |
---|---|---|---|
* | 演算子 | → | If specified, object is an object name (string). If omitted, object is a variable. |
object | フォームオブジェクト | → | Object name (if * is specified) or Variable (if * is omitted). |
contextObj | Object | → | Object containing the functions that can be called with $4d . |
説明
The WA SET CONTEXT
command defines a context object contextObj for $4d
in the Web area designated by the * and object parameters. When this command is used, $4d
can only access contents declared within the provided contextObj. When no context object is set, $4d
has access to all 4D methods and can not access user classes.
The command is only usable with an embedded web area where the Use embedded web rendering engine and Access 4D methods parameters are set to true
.
Pass in contextObj user class instances or formulas to be allowed in $4d
as objects. Class functions that begin with _
are considered hidden and cannot be used with $4d
.
- If contextObj is null,
$4d
has access to all 4D methods. - If contextObj is empty,
$4d
has no access.
例題 1
Allow $4d
to specific methods
var $context:={}
$context.myMethod:=Formula(myMethod)
$context.myMethod2:=Formula(myMethod2)
WA SET CONTEXT(*; "myWebArea"; $context)
In JavaScript:
$4d.myMethod(); // Allowed
$4d.myMethod2(); // Allowed
$4d.someOtherMethod(); // Not accessible
例題 2
Using a Class Object
var $myWAObject:=cs.WAFunctions.new()
WA SET CONTEXT(*; "MyWA"; $myWAObject)
In JavaScript:
$4d.myWAFunction(); // Allowed
$4d._myPrivateFunction(); // Will do nothing because function is private
参照
プロパティ
コマンド番号 | 1848 |
スレッドセーフ | ✗ |