参考钩子

useHandleConnections

GitHub 上的源代码

此钩子可用于在句柄的连接发生变化时获得通知。

<script lang="ts">
  import { useHandleConnections } from '@xyflow/svelte';
 
  const connections = useHandleConnections({ nodeId: 'node-id', type: 'target' });
 
  $: {
    // This will be called whenever connections change
    // for the target handle in the node with id 'node-id'
    console.log($connections);
  }
</script>

签名

#参数
#nodeId
string
#type
"source" | "target"
句柄的类型
#id(可选)
string
句柄的 ID。只有在您有多个相同类型的句柄时才需要此项。
#返回值
Readable<Connection[]>
连接到此句柄的连接的可读存储。

备注