我想為 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 自述文件連結
#