Skip to Content
参考手册钩子

useNodeConnections()

GitHub 上的源代码

¥Source on GitHub

此钩子返回特定节点、句柄类型 (‘source’、‘target’) 或句柄 ID 上的连接数组。

¥This hook returns an array of connections on a specific node, handle type (‘source’, ‘target’) or handle ID.

import { useNodeConnections } from '@xyflow/react'; export default function () { const connections = useNodeConnections({ handleType: 'target', handleId: 'my-handle', }); return ( <div>There are currently {connections.length} incoming connections!</div> ); }

签名

¥Signature

#Params
#id?
string
ID of the node, filled in automatically if used inside custom node
#handleType?
"source" | "target"
What type of handle connections do you want to observer?
#handleId?
string
ID of the handle
#onConnect?
(connections: Connection[]) => void
#onDisconnect?
(connections: Connection[]) => void
#Returns