将自定义html插入到quill编辑器中

问题描述 投票:1回答:1

我使用Quill作为我的发送邮件表单,在我的工具栏中,我有一个带有签名的下拉列表。当我选择签名时,我必须在编辑器中插入自定义和复杂的html代码(格式化并使用img),当我更改签名时,我必须替换插入的html代码。

我将代码插入到指定id的p标签中,但Quill清除代码也删除了id,因此我找不到p标签。

我需要保留html代码和id。

有人可以帮帮我吗?请。

angular editor contenteditable quill
1个回答
1
投票

你必须写一个自定义的Blot,像这样:

class Signature extends BlockEmbed {
  static create(value) {
    const node = super.create(value);
    node.contentEditable = 'false';
    this._addSignature(node, value);
    return node;
  }

  static value(node) {
    return node.getAttribute(Signature.blotName)
  }

  static _addSignature(node, value) {
    node.setAttribute(Signature.blotName, value);

    // This is a simple switch, but you can use
    // whatever method of building HTML you need.
    // Could even be async.
    switch (value) {
      case 1:
        return this._addSignature1(node);
      default:
        throw new Error(`Unknown signature type ${ value }`);
    }
  }

  static _addSignature1(node) {
    const div = document.createElement('DIV');
    div.textContent = 'Signature with image';
    const img = document.createElement('IMG');
    img.src = 'https://example.com/image.jpg';

    node.appendChild(div);
    node.appendChild(img);
  }
}
Signature.blotName = 'signature';
Signature.tagName = 'DIV';
Signature.className = 'ql-signature';

确保你register它:

Quill.register(Signature);

然后你可以像这样使用它:

quill.updateContents([
  { insert: { signature: 1 } },
]);
© www.soinside.com 2019 - 2024. All rights reserved.