节点参考
This content is not available in your language yet.
共 20 种节点,分 9 个类别:
| 类别 | 数量 | 节点 |
|---|---|---|
| 触发器 (trigger) | 6 | ⚡ 🕐 🔗 🖱 ▶ ⤵ |
| 逻辑 (logic) | 1 | ⑂ |
| 流程控制 (control) | 2 | ⏱ 🔄 |
| 表操作 (table) | 4 | 🔍 + ✎ 🗑 |
| 集成 (integration) | 2 | ↗ 📨 |
| 脚本 (script) | 1 | ⌘ |
| AI (ai) | 1 | ✦ |
| 子流程 (workflow) | 1 | ⤴ |
| 批注 (annotation) | 2 | 📝 🗂 |
工作流的入口。所有节点都需要一个触发器在前面才会执行。
⚡ 记录事件
Section titled “⚡ 记录事件”NodeType.TriggerRecord i18n: automation.node.triggerRecord
记录被创建/更新/删除时触发。
🕐 定时触发
Section titled “🕐 定时触发”NodeType.TriggerSchedule i18n: automation.node.triggerSchedule
按 Cron 或时间间隔触发。
🔗 Webhook
Section titled “🔗 Webhook”NodeType.TriggerWebhook i18n: automation.node.triggerWebhook
接收外部 HTTP 请求时触发。
🖱 按钮触发
Section titled “🖱 按钮触发”NodeType.TriggerButton i18n: automation.node.triggerButton
点击表格 Button 字段时触发。
▶ 手动运行
Section titled “▶ 手动运行”NodeType.TriggerManual i18n: automation.node.triggerManual
用户手动点击运行按钮时触发。
⤵ 子流程入口
Section titled “⤵ 子流程入口”NodeType.TriggerWorkflow i18n: automation.node.triggerWorkflow
被其他工作流通过调用工作流节点触发。
基于条件分叉执行路径。
⑂ 条件分支
Section titled “⑂ 条件分支”NodeType.IfElse i18n: automation.node.ifElse
根据条件决定执行路径。
延迟、循环等控制流。
NodeType.Delay i18n: automation.node.delay
等待一段时间后继续。
NodeType.Loop i18n: automation.node.loop
遍历记录列表,对每条执行后续节点。
读 / 写多维表格的字段、记录。
🔍 查找记录
Section titled “🔍 查找记录”NodeType.FindRecords i18n: automation.node.findRecords
按条件查询表中的记录。
+ 新建记录
Section titled “+ 新建记录”NodeType.CreateRecord i18n: automation.node.createRecord
在表中创建一条新记录。
✎ 更新记录
Section titled “✎ 更新记录”NodeType.UpdateRecord i18n: automation.node.updateRecord
更新指定记录的字段值。
🗑 删除记录
Section titled “🗑 删除记录”NodeType.DeleteRecord i18n: automation.node.deleteRecord
删除指定的记录。
调外部系统:HTTP / 通知。
↗ HTTP 请求
Section titled “↗ HTTP 请求”NodeType.HttpRequest i18n: automation.node.httpRequest
调用外部 REST API。
📨 发送通知
Section titled “📨 发送通知”NodeType.SendNotification i18n: automation.node.sendNotification
发送邮件或推送通知。
执行系统命令(需主进程开启权限)。
NodeType.CommandLine i18n: automation.node.commandLine
执行系统命令,输出 stdout/stderr。
LLM 调用。
✦ AI 处理
Section titled “✦ AI 处理”NodeType.LLM i18n: automation.node.llm
使用大模型处理文本。
把另一个工作流当节点调用。
⤴ 调用工作流
Section titled “⤴ 调用工作流”NodeType.CallWorkflow i18n: automation.node.callWorkflow
将另一个自动化工作流作为子流程调用。
便笺、分组等画板装饰,不参与执行。
NodeType.Note i18n: automation.node.note
在画布上写说明 / 提醒,不参与执行。
NodeType.Group i18n: automation.node.group
把相关节点圈成一组,整体拖动 / 命名。