更新我的状态变量时发生 React-quilljs 错误
我正在使用 react-quilljs 并且我想为其设置一个初始值每当文本发生变化时,我想通过 useState 的 setState 设置输出变量,这样当用户单击“保存”按钮时,我可以使用状态变量来保存数据。
React.useEffect(() => {
if (quill) {
quill.clipboard.dangerouslyPasteHTML(initialData);
quill.setSelection(quill.getLength(), 0);
quill.on('text-change', (delta, oldDelta, source) => {
console.log('Text is Changed');
getData(quill.root.innerHTML); // this is my setState
});
}
}, [quill]);
但我收到此错误
看来我的 setState 触发了重新渲染并使编辑器返回到其初始值。
谁能指导我如何获得 quilleditor 输出。
I am using react-quilljs and I want to set an intial value to it and at the same time I want to set my output variable via setState of useState whenever the text changes so I can use the state variable to in saving the data when user click save button.
React.useEffect(() => {
if (quill) {
quill.clipboard.dangerouslyPasteHTML(initialData);
quill.setSelection(quill.getLength(), 0);
quill.on('text-change', (delta, oldDelta, source) => {
console.log('Text is Changed');
getData(quill.root.innerHTML); // this is my setState
});
}
}, [quill]);
But I got this error
It seems my setState triggers re render and make the editor go back to its initial value.
Can anyone guide me on how I can get my quilleditor output.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论