# 已弃用的上下文函数
☢️ 这些上下文实用程序函数已弃用,可能会在未来的 Rollup 版本中删除。
this.moduleIds: IterableIterator
<string>
- 使用 this.getModuleIds - 一个 Iterator,可以访问当前图形中的所有模块 ID。可以通过以下方式进行迭代for (const moduleId of this.moduleIds) { /* ... */ }
或通过 Array.from(this.moduleIds) 转换为数组。