Aframe状态组件-模板正在Aframe外部添加元素

时间:2019-03-14 00:59:25

标签: reactjs aframe

我正在尝试使用aframe-state-component模板化实体:

  <a-entity layout="type: circle; radius: 10" bind-for="for: guidePreview; in: guidePreviews; key: id">
          <template>
            <a-entity draw="width:256; height: 256" guidepreview="{{guidePreview}}" bind="data: guidePreview"></a-entity>
          </template>
  </a-entity>

我知道

  

您正在尝试附加到A帧场景之外。   而是将此元素附加到<a-scene>。 aframe-master.js:58249   未捕获的TypeError:parentEl.emit不是函数

at HTMLElement.value (aframe-master.js:58249)
at HTMLElement.value (aframe-master.js:58112)
at HTMLElement.wrappedMethod (aframe-master.js:59621)
at HTMLElement.value (aframe-master.js:58246)
at HTMLElement.value (aframe-master.js:58112)
at HTMLElement.wrappedMethod (aframe-master.js:59621)
at NewComponent.renderItems (aframe-state-component.js:953)
at NewComponent.<anonymous> (aframe-state-component.js:932)

这是在场景中,但是它也在React组件(我需要定义访问和路由)中

是因为React而将模板添加到场景之外的原因吗?

0 个答案:

没有答案