How do I get value from ACE editor?

后端 未结 7 1189
一整个雨季
一整个雨季 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 04:13

    Per their API:

    Markup:

    some text

    Finding an instance:

    var editor = ace.edit("aceEditor");
    

    Getting/Setting Values:

    var code = editor.getValue();
    
    editor.setValue("new code here");
    

    Based on my experience, Ace is the best code editor I've seen. There are few others such as CodeMirror etc. but I found them to be less useful or difficult to integrate than Ace.

    Here's a Wiki page for comparision of such editors.

    There is a paid one also which I haven't tried (and I can't remember for now). Will updated later if I can find it.

提交回复
热议问题