我正在尝试在当前选择下方添加一个新行,然后将选择放入新行。
let current_path = props.selection.anchor.path[0]
Transforms.insertNodes(editor, {type:'line', children:[{ text:'' }]},{at: [current_path+1]});
const point = { anchor: { path: [current_path+1, 0], offset: 0 }, focus: { path: [current_path+1, 0], offset: 0 }}
// set focus
ReactEditor.focus(editor);
// set selection
Transforms.select(editor, point);
但这出现了一个错误:错误:无法从 Slate 节点解析 DOM 节点:{“text”:“”}。有谁知道如何解决它或有其他方法来实现它?谢谢!