跳到主要内容

execution#

execution.id#

包含当前工作流执行的唯一标识符。

JavaScriptPython
let executionId = $execution.id;executionId = _execution.id

execution.resumeUrl#

用于恢复等待中工作流程的Webhook调用地址。

请参阅等待 > 通过Webhook调用文档以了解更多信息。

execution.resumeUrl 在包含等待节点及等待Webhook响应节点的流程中可用。

execution.customData#

此属性仅在代码节点中可用。

JavaScriptPython
// Set a single piece of custom execution data $execution.customData.set("key", "value"); // Set the custom execution data object $execution.customData.setAll({"key1": "value1", "key2": "value2"}) // Access the current state of the object during the execution var customData = $execution.customData.getAll() // Access a specific value set during this execution var customData = $execution.customData.get("key")# Set a single piece of custom execution data _execution.customData.set("key", "value"); # Set the custom execution data object _execution.customData.setAll({"key1": "value1", "key2": "value2"}) # Access the current state of the object during the execution customData = _execution.customData.getAll() # Access a specific value set during this execution customData = _execution.customData.get("key")

请参阅自定义执行数据获取更多信息。