在我的代码中,我创建了一个像这样的编辑器:
this.monacoEditor = monaco.editor
.create(
document.getElementById('ide'), {
model: null,
readOnly: true,
contextmenu: false,
}
);
所以现在该编辑器是readonly。如何将this.monacoEditor
更改为可写/可编辑?
答案 0 :(得分:2)
我明白了。在上面的代码的上下文中:
this.monacoEditor.updateOptions({readOnly: false});