你如何将monaco-editor从readonly设置为可写?

时间:2017-07-16 14:14:12

标签: javascript typescript monaco-editor

在我的代码中,我创建了一个像这样的编辑器:

this.monacoEditor = monaco.editor
  .create(
    document.getElementById('ide'), {
      model: null,
      readOnly: true,
      contextmenu: false,
    }
  );

所以现在该编辑器是readonly。如何将this.monacoEditor更改为可写/可编辑?

1 个答案:

答案 0 :(得分:2)

我明白了。在上面的代码的上下文中:

this.monacoEditor.updateOptions({readOnly: false});