7.15 党建攻坚管理端
This commit is contained in:
@ -196,13 +196,19 @@ const BraftText: React.FC<WangType> = (props) => {
|
||||
|
||||
// 重新设置编辑器内容
|
||||
echo && editor.txt.html(echo);
|
||||
value && editor.txt.html(value);
|
||||
|
||||
return () => {
|
||||
// 组件销毁时销毁编辑器 注:class写法需要在componentWillUnmount中调用
|
||||
editor.destroy()
|
||||
setLoading(false);
|
||||
setContent('');
|
||||
}
|
||||
}, [value, echo]);
|
||||
}, [echo]);
|
||||
|
||||
useEffect(() => {
|
||||
// 重新设置编辑器内容
|
||||
value && editor.txt.html(value);
|
||||
}, [value])
|
||||
/**
|
||||
*提供给父级的内容
|
||||
**/
|
||||
|
Reference in New Issue
Block a user