0

我正在使用suneditor-reacttypescript。我想获取编辑器的内容来创建 PDF。但问题是当我尝试访问 SunEditor 的引用时,出现以下错误

Property 'ref' does not exist on type 'IntrinsicAttributes & SunEditorReactProps & { children?: ReactNode; }'. 

此外,我getContents()SunEditorReactProps. 但它在他们的示例页面中。 在此处输入图像描述

请给出你的想法。

sunediotr-react

suneditor 示例页面

4

2 回答 2

0
  1. 导入 SuneditorCore
import SunEditorCore from "suneditor/src/lib/core";

2)声明和设置给定变量的值

private suneditor1!:SunEditorCore;
this.suneditor1=suneditor.create('sample', {
            
});

3)调用suneditor函数

const savedata=this.suneditor1.getContents(true); 
于 2021-08-25T10:19:18.370 回答
0

嗨,我是 SunEditor React 组件的作者,您可以在此处了解如何将 ref 附加到 suneditor react 组件(在 typescript 中

于 2021-04-05T21:58:10.893 回答