过滤器组
groupFilter
组件:过滤器节点组。 把多个Filter
节点组成一个分组,如果所有节点都是True,则把数据到True
链, 否则发到False
链。
如果allMatches=false,则只要有任何一个节点返回是True,则发送到True
链
# 配置
字段 | 类型 | 是否是必填 | 说明 | 默认值 |
---|---|---|---|---|
allMatches | bool | 否 | 是否要求所有节点都匹配 | false |
nodeIds | string | 是 | 组内节点ID列表,多个ID与, 隔开 | - |
timeout | int | 否 | 执行超时,单位秒,默认:0代表不超时 | 0 |
# Relation Type
- True: 把消息发送到
True
链 - False: 把消息发送到
False
链 - Failure: nodeIds为空或者执行超时,发送到
Failure
链
allMatches=true 所有节点都匹配才发送到True链,如果为false,则只要有任何一个节点匹配就发送到True链
# 配置示例
参考示例:group_filter_node (opens new window)
//注意:规则链从第三个节点开始触发。firstNodeIndex=2
{
"ruleChain": {
"id": "rule01",
"name": "测试规则链",
"root": true
},
"metadata": {
"firstNodeIndex": 2,
"nodes": [
{
"id": "s1",
"type": "jsFilter",
"name": "过滤1",
"debugMode": true,
"configuration": {
"jsScript": "return msg.temperature > 50;"
}
},
{
"id": "s2",
"type": "jsFilter",
"name": "过滤2",
"debugMode": true,
"configuration": {
"jsScript": "return msg.humidity > 80;"
}
},
{
"id": "group1",
"type": "groupFilter",
"name": "过滤组",
"debugMode": true,
"configuration": {
"allMatches": false,
"nodeIds": "s1,s2"
}
},
{
"id": "s3",
"type": "log",
"name": "记录日志",
"debugMode": false,
"configuration": {
"jsScript": "return 'call this node for True relation';"
}
},
{
"id": "s4",
"type": "log",
"name": "记录日志",
"debugMode": false,
"configuration": {
"jsScript": "return 'call this node for False relation';"
}
}
],
"connections": [
{
"fromId": "group1",
"toId": "s3",
"type": "True"
},
{
"fromId": "group1",
"toId": "s4",
"type": "False"
}
]
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
在 GitHub 上编辑此页 (opens new window)
上次更新: 2024/10/23, 10:13:01