2

我有一个用例,其中 ProseMirror 编辑器起初不可编辑(只读模式)。一旦用户双击编辑器,编辑器就变为可编辑的。

/**
 * The schema is defined to have paragraphs within a document.
 */

const state = EditorState.create({
  schema,
  doc: schema.nodeFromJSON(emptyDoc),
});

const view = new EditorView(document.getElementById('editor'), {
  state,
  editable: () => false,
});


/**
 * Once the user double clicks the editor, we enable it to be editable.
 */
view.setProps({
  editable: () => true,
});

这一切都很好。这里的问题是插入符号在变为可编辑时不会立即可见。当然,我可以单击文本,它就会变得可见。

但是,我希望它立即显示在它被双击的位置。这可能吗?

4

0 回答 0