我想为 Sun 编辑器设置默认值。
我从数据库获取的默认值
我像这样设置了默认值,但它不起作用。
<SunEditor autoFocus={true} onChange={handleEditorChange} setOptions={toolbarOptions} defaultValue={guide.description} />
数据库中的数据 在此输入图像描述
只有这样才有效
<SunEditor autoFocus={true} onChange={handleEditorChange} setOptions={toolbarOptions} defaultValue={"<p>The editor's default value</p>"} />
尝试react-sun-editor的api函数
Suneditor-react 自述文件链接