节点引用
ref
:引用指定规则链或者当前规则链节点,用于节点复用。v0.24.0+
# 配置
字段 | 类型 | 是否必填 | 说明 | 默认值 |
---|---|---|---|---|
targetId | string | 是 | 格式:[{chainId}]:{nodeId},如果是引入本规则链,则格式为:{nodeId} | 无 |
# Relation Type
- 执行成功则使用该节点的输出关系发送到下一个节点。
- 如果找不到节点,则把消息通过
Failure
关系发送到下一个节点。
# 示例
{
"id": "node_5",
"type": "ref",
"name": "引用当前链节点",
"configuration": {
"targetId": "node_4"
}
}
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
{
"id": "node_2",
"type": "ref",
"name": "引用其它链节点",
"configuration": {
"targetId": "ynlLYSAgCy2J:node_2"
}
}
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
在 GitHub 上编辑此页 (opens new window)
上次更新: 2024/10/13, 11:56:11