1

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

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

所以现在那个编辑器是只读的。我将如何更改this.monacoEditor为可写/可编辑?

4

1 回答 1

3

我想到了。在上述代码的上下文中:

this.monacoEditor.updateOptions({readOnly: false});
于 2017-07-16T15:18:09.923 回答