GGEditor 的组件上下文这个概念,来自 gg-editor 的文档,但其实我感觉,这就是 react 的 ref,ref 包含了 GGEditor 组件下的所有属性和方法的对象,就像是一个实例。

通过 ref 获取

我是这么获取的

  1. class App extends Component {
  2. componentDidMount() {
  3. console.log(this.editorRef);
  4. }
  5. editorRef = React.createRef();
  6. render() {
  7. <GGEditor ref={this.editorRef}>
  8. ...
  9. </GGEditor>
  10. }
  11. }

打印看一下获取结果:
right-btn-menu.png

我们可以通过这一点来寻找 gg-editor 中的你未发现的 API