我有一个带有 next.js 和 tailwindcss 的项目,最近我安装了tinymce-react,它是一个丰富的文本,可以在我的项目中进行反应,但我不能很好地打字,我用 chatgpt 检查了我的代码,但它无法帮助我:
我检查了 apiKey,一切正常。
在加载时设置initialValue={},但如果您使用useState()来存储编辑后的值,则需要将其设置为value={}属性。
示例:
const [editedValue, setEditedValue] = useState(myObject.lifeStory);
....
<Editor
...
value={editedValue}
initialValue={myObject.lifeStory}
onEditorChange={(content, editor) => { setEditedValue(content) }}
...
/>