innerId
运行时创建的临时 id(递增),用于快速识别元素,可通过 findOne() 查找。
只读属性
innerId: number
运行时创建的临时 id(递增),不能用于远程存储。
归属
UI
示例
通过 innerId 查找
ts
import { Leafer, Rect } from 'leafer-ui'
const leafer = new Leafer({ view: window })
const rect1 = new Rect({ id: 'block', fill: '#32cd79' })
const rect2 = new Rect({ fill: '#32cd79' })
leafer.add(rect1)
leafer.add(rect2)
console.log(
leafer.findOne(rect2.innerId) // rect2
)