版本
- 下一个:12.0.7
- 太阳编辑器:2.41.3
- suneditor反应:3.3.1
const SunEditor = dynamic(() => import("suneditor-react"), {
ssr: false,
});
import "suneditor/dist/css/suneditor.min.css"; // Import Sun Editor's CSS File
// states
const [toggle, setToggle] = useState<boolean>(false);
const [content, setContent] = useState<string>("");
useState(() => {
console.log(toggle, content);
}, [toggle, content]);
// render
return (
<SunEditor
onChange={(content) => {
setToggle(!toggle);
setContent(!content);
}
/>
);
当我键入控制台面板时,总是显示只有content
更改,但toggle
没有更改。
我真的不知道会发生什么,我只想在SunEditor
'sonChange
事件中设置其他状态,但我不能。谁能向我解释如何解决这个问题?