
Passthrough节点是一个简单的节点,它直接将输入值传递到输出而不做任何修改。当您希望在图中通过特定路径传递某个值而不改变它时(例如将图中不同分支的值分组,或控制连线在图中如何流动),这个节点会很有用。
标题 | 数据类型 | 描述 | 默认值 | 备注 |
---|
Input [i] | any | The ith input to be passed through | N/A | Dynamic number of inputs based on how many connections there are |
标题 | 数据类型 | 描述 | 备注 |
---|
Output [i] | any | The ith output from the passthrough | Dynamic number of outputs based on how many connections there are |
错误处理
Passthrough节点没有任何错误处理功能。如果输入缺失或为null,相应的输出也会缺失或为null。
常见问题
问:如果输入缺失或为null会怎样?
A: 如果输入缺失或为null,对应的输出也会缺失或为null。
另请参阅