标签: codemirror
我知道你使用
editor.setValue("");
设置一个值但是如何在CodeMirror中追加?
IE:
editor.appendText();?
答案 0 :(得分:10)
使用replaceRange。例如editor.replaceRange(myString, CodeMirror.Pos(editor.lastLine())。重新设置整个编辑器是不必要的昂贵。
replaceRange
editor.replaceRange(myString, CodeMirror.Pos(editor.lastLine())