关于React-Konva 报:Text components are not supported....错误的问题

0 阅读1分钟
完整错误信息:Text components are not supported for now in ReactKonva. You text is: "xxxxx"

这个问题常出现的主要原因是,我在konva得组件里注入非konva的组件。

错误示例:

import {Stage,Layer,React,Circle} from "react-konva"

<Stage width={window.innerWidth } height={window.innerHeight}>
  <Layer>
     <div>
        <Rect/>
        <Circle/>
     </div>
  </Layer>
</Stage>

其中,div就是非konva的组件。

把div去掉就好啦