1

我在一个项目中使用 react-konva 来渲染 HTML5-canvas 元素:

import desktop_tea_1 from "./previews_desktop/tea_1.png";

const DesktopTea1 = () => {
    const [desktop_tea_1_const] = useImage(desktop_tea_1);
    return <Image image={desktop_tea_1_const} width={600} height={600}  />;
};

(...)

<Stage width={600} height={600}>
    <Layer ref="DesktopTea1">
        <DesktopTea1/>
    </Layer>
</Stage>

现在我希望 HTML 输出有一个 id (myId),如:

<canvas width="600" height="600" id="myId"></canvas>

我只能找到konva-id但没有设置 HTML-id。

4

1 回答 1

2

最好使用尽可能少的层数。所以我不建议在你的应用程序中使用其中的许多。

没有 Konva API 为图层的画布元素设置 id。但是您可以手动执行此操作:

const App = () => {
  const layerRef = React.useRef(null);
  React.useEffect(() => {
    layerRef.current.getCanvas()._canvas.id = 'some-id';
  }, []);

  return (
    <Stage width={600} height={600}>
      <Layer ref={layerRef}>
        <DesktopTea1/>
      </Layer>
    </Stage>
  );
}

如果您不打算使用太多层,css:nth-of-type()可能会工作得很好。

于 2019-05-20T14:42:05.200 回答