Я использую ng2-ace-editor в моем проекте. Мне нужно показать сообщение об ошибке или предупреждение перед номером строки, где они являются ошибкой.
Я пробую способ, описанный здесь: https://github.com/fxmontigny/ng2-ace-editor/commit/11a9c4025465190e2c8e35081e09e51fb32e7848#diff-aa2cbbf8c50873cb0bf8e42f52cf1319
var Range = ace.require('ace/range').Range;
this.highlight.getEditor().session.addMarker(
new Range(0, 0, 2, 1), "myMarker", "fullLine"
);
Это ничего не сделало в редакторе. Так называется редактор на странице.
this.editor.getEditor().setOptions({
enableBasicAutocompletion: editorOption.snippet,
highlightActiveLine: editorOption.highlight,
showLineNumbers: editorOption.line,
enableSnippets: editorOption.snippet,
enableLiveAutocompletion: editorOption.snippet,
behavioursEnabled: editorOption.behaviours,
wrapBehavioursEnabled: editorOption.wrapb,
autoScrollEditorIntoView: editorOption.auto,
wrap: editorOption.wrap,
keyboardHandler: null,
readOnly: editorOption.readonly
});
Заранее спасибо за помощь.