How do I get value from ACE editor?

后端 未结 7 1186
一整个雨季
一整个雨季 2020-12-13 03:43

I am using ACE editor for the first time. I have the below questions related to it.

  1. How do I find the instance of ACE

7条回答
  •  心在旅途
    2020-12-13 03:52

    I added a listener to the load event, and then I get the instance:

    onLoad={(editor) => {
        this.sourceEditor=editor;
    }}
    

    Which I can manipulate later.

提交回复
热议问题