3d.io 将来是否支持 React 组件?现在,我需要从组件中找到利用“ref”的 dom 元素来检索 io3d 对象。
render () {
// this.props.elements is the state from getAframeElements
if (this.props.sceneId !== '') {
this.props.elements.forEach( (item) => {
this.refs.scene.appendChild(item)
})
}
return (
<a-entity ref="scene">
</a-entity>
)
}
你有任何指南如何在 React 项目中使用 3d.io 吗?或者我需要在 React 的 componentDidMount 事件之后使用 document.querySelector。