为什么ace编辑器加载所有文本突出显示以及如何删除它?

时间:2014-02-26 11:12:56

标签: angularjs angular-ui ace-editor

我的代码如下:

$scope.aceIDEs='var hw = new function() {\n  console.log("Hello world!");\n}'

$scope.loadAceJSExample = function (_editor) {
_editor.setValue($scope.aceIDEs);
_editor.getSession().setUseWorker(false);
_editor.setHighlightActiveLine(true);
};

<div class="container fade-in" style='padding: 4em;'>
<div>
      ui-ace="{onLoad : loadAceJSExample,
      onChange : aceJSExampleChanged,
      useWrapMode : true,
      theme : 'github',
      showGutter: true,
      mode: 'javascript'

    }" />

我试过调用_editor.getSession()。removeMarker();但没有帮助

每当我刷新它看起来像这样,一旦我点击它恢复正常: Before i click

1 个答案:

答案 0 :(得分:7)

使用_editor.session.setValue($scope.aceIDEs);也可以重置undomanager。 或者,您可以使用_editor.setValue($scope.aceIDEs, cursorPos);。其中cursorPos=-1将光标放在开头,而cursorPos=1放在最后。 或者在设置值后调用_editor.clearSelection()