useHandleConnections
此钩子可用于在句柄的连接发生变化时获得通知。
<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" 句柄的类型 |
string 句柄的 ID。只有在您有多个相同类型的句柄时才需要此项。 | |
#返回值 |
|
Readable<Connection[]> 连接到此句柄的连接的可读存储。 |
备注
- 查看 计算流程示例,了解如何使用此钩子。