参考钩子useNodes()useNodes GitHub 上的源代码 这个钩子返回当前节点数组的存储。当您订阅此存储时,它将在节点数组发生更改时触发。这发生在添加、删除或更新节点(例如拖动)时。 <script lang="ts"> import { useNodes } from '@xyflow/svelte'; const nodes = useNodes(); </script> 签名 名称类型#返回值#Writable<Node[]>当前节点存储。钩子