NodeOutputData#
$().all()#
Description: 返回节点的输出数据项数组
Syntax: $().all(branchIndex?, runIndex?)
Returns: Array
Source: Custom n8n functionality
Parameters:
branchIndex(Number) - optional - 要使用的节点输出分支。默认为第一个分支(索引 0)runIndex(Number) - optional - 要使用的节点运行次数。默认为第一次运行(索引 0)
$().first()#
Description: 返回节点输出的第一个数据项
Syntax: $().first(branchIndex?, runIndex?)
Returns: Item
Source: Custom n8n functionality
Parameters:
branchIndex(Number) - optional - 要使用的节点输出分支。默认为第一个分支(索引 0)runIndex(Number) - optional - 要使用的节点运行次数。默认为第一次运行(索引 0)
$().isExecuted#
Description: 如果节点已执行则为 true,否则为 false
Syntax: $().$().isExecuted
Returns: Boolean
Source: Custom n8n functionality
$().item#
Description: 返回匹配的数据项,即用于在当前节点中生成当前数据项的数据项。更多信息
Syntax: $().$().item
Returns: Item
Source: Custom n8n functionality
$().itemMatching()#
Description: 返回匹配的数据项,即用于在当前节点中生成指定索引处数据项的数据项。更多信息
Syntax: $().itemMatching(currentItemIndex?)
Returns: Item
Source: Custom n8n functionality
Parameters:
currentItemIndex(Number) - 当前节点中要匹配的数据项索引。
$().last()#
Description: 返回节点输出的最后一个数据项
Syntax: $().last(branchIndex?, runIndex?)
Returns: Item
Source: Custom n8n functionality
Parameters:
branchIndex(Number) - optional - 要使用的节点输出分支。默认为第一个分支(索引 0)runIndex(Number) - optional - 要使用的节点运行次数。默认为第一次运行(索引 0)
$().params#
Description: 指定节点的配置设置。这些是您在节点界面中填写的参数(例如其操作)。
Syntax: $().$().params
Returns: NodeParams
Source: Custom n8n functionality