有没有办法访问线图中的特定元素?
render() {
hyper(this.shadowRoot)`
<style>${css}</style>
<container>
${this.referenceImages.map(image => wire(image)`
<cell>
<inner-cell class="${this.returnClass()}">
</inner-cell>
</cell>
`)}
</container>
`;
}
我将如何访问 returnClass() 中的节点?
有没有更好的方法通过使用线 ID 和弱引用来做我想做的事?