在@tinymce/tinymce-react包中写入时遇到问题

问题描述 投票:0回答:1

我有一个带有 next.js 和 tailwindcss 的项目,最近我安装了tinymce-react,它是一个丰富的文本,可以在我的项目中进行反应,但我不能很好地打字,我用 chatgpt 检查了我的代码,但它无法帮助我:

enter image description here

我检查了 apiKey,一切正常。

reactjs next.js tinymce content-management-system
1个回答
0
投票

在加载时设置initialValue={},但如果您使用useState()来存储编辑后的值,则需要将其设置为value={}属性。

示例:

const [editedValue, setEditedValue] = useState(myObject.lifeStory);

....

<Editor
    ...
    value={editedValue}
    initialValue={myObject.lifeStory}
    onEditorChange={(content, editor) => { setEditedValue(content) }}
    ...
/>
最新问题
© www.soinside.com 2019 - 2025. All rights reserved.