有人试过这个例子吗?
https://quilljs.com/guides/cloning-medium-with-parchment
我正在寻找答案
static formats(node)
用于。如果它返回
似乎没有任何影响。空|未定义|假
答案 0 :(得分:1)
返回Blot表示的格式。例如,对于标题,可以通过这种方式实现:
formats(domNode) {
if (domNode.tagName === 'H1') return 1;
if (domNode.tagName === 'H2') return 2;
if (domNode.tagName === 'H3') return 3;
return null;
}
您可以在https://github.com/quilljs/parchment找到有关Blots的更多详细信息。此外,Quill如何实现其格式可能会有所帮助:https://github.com/quilljs/quill/tree/develop/formats。