Skip to content

execution#

execution.id#

包含当前工作流执行的唯一 ID。

¥Contains the unique ID of the current workflow execution.

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

execution.resumeUrl#

用于恢复 waiting 工作流的 webhook URL。

¥The webhook URL to call to resume a waiting workflow.

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

¥See the Wait > On webhook call documentation to learn more.

execution.resumeUrl 可用于包含 Wait 节点的工作流,以及等待 Webhook 响应的节点。

¥execution.resumeUrl is available in workflows containing a Wait node, along with a node that waits for a webhook response.

execution.customData#

这仅在代码节点中可用。

¥This is only available in the Code node.

```js // 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")

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
````

=== "Python"
	```python
	# 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")
````

有关更多信息,请参阅 自定义执行数据

¥Refer to Custom executions data for more information.