我尝试过像这样获取羽毛笔对象:
select column1, listagg(CAST(column2 AS VARCHAR(10000)), x'0A') AS "Concat column"...
然后在
<ReactQuill ref={this.setRef}/>
中获得了主题对象componentDidMount
然后我致电
this.quillRef= this.reactQuillRef.getEditor();
/ this.quillRef.history.undo()
但焦点似乎有问题,有点像ReactQuill和Quill不同步。当我做撤消或重做时,它只是移动光标。
但在this.quillRef.history.redo()
和ctrl + z
上一切正常。