Skip to content

使用条件节点拆分工作流#

¥Splitting workflows with conditional nodes

拆分操作使用 IFSwitch 节点。它将单分支工作流转换为多分支工作流。这是 n8n 中表示复杂逻辑的关键部分。

¥Splitting uses the IF or Switch nodes. It turns a single-branch workflow into a multi-branch workflow. This is a key piece of representing complex logic in n8n.

比较以下工作流程:

¥Compare these workflows:

"Diagram representing two workflows. One has three steps and follows a linear process, with a user submitting a bug, and the workflow emailing a support team. The second workflow starts the same way, but then splits depending on whether the user marked the issue as urgent. It then splits again depending on the user's support plan"

这就是 n8n 中拆分节点和条件节点的强大之处。

¥This is the power of splitting and conditional nodes in n8n.

请参阅 IFSwitch 文档,了解使用详情。

¥Refer to the IF or Switch documentation for usage details.