我的代码如下:
$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();但没有帮助
每当我刷新它看起来像这样,一旦我点击它恢复正常:
答案 0 :(得分:7)
使用_editor.session.setValue($scope.aceIDEs);
也可以重置undomanager。
或者,您可以使用_editor.setValue($scope.aceIDEs, cursorPos);
。其中cursorPos=-1
将光标放在开头,而cursorPos=1
放在最后。
或者在设置值后调用_editor.clearSelection()
。