3 回答
TA贡献1839条经验 获得超15个赞
不幸的是,接受的答案并没有完全解决我的问题。
我正在寻找一种添加/保留多个类的可能方法。
这是最终的解决方案:
const Inline = Quill.import("blots/inline");
const ATTRIBUTES = ["href", "rel", "target", "class"];
class InternalLink extends Inline {
static create(value) {
let node = super.create(value);
node.setAttribute("href", value.href);
if (value.rel) node.setAttribute("rel", value.rel);
if (value.target) node.setAttribute("target", value.target);
if (value.class) node.setAttribute("class", value.class);
return node;
}
static formats(domNode) {
return ATTRIBUTES.reduce((formats, attribute) => {
if (domNode.hasAttribute(attribute)) {
formats[attribute] = domNode.getAttribute(attribute);
}
return formats;
}, {});
}
}
InternalLink.blotName = "internal_link";
InternalLink.tagName = "A";
Quill.register({
"formats/link": InternalLink
});
TA贡献1780条经验 获得超3个赞
您还需要使用该类将该元素添加到 Quill 实例的一侧Inline。
这是一个例子:
const Inline = Quill.import("blots/inline");
InternalLink.blotName = "internal_link";
InternalLink.className = "btn";
InternalLink.tagName = "A";
Quill.register({
"attributors/class/link": LinkClass,
"formats/internal_link": InternalLink
});
TA贡献1804条经验 获得超8个赞
此版本将保留所有属性(在我的初步测试中)并且不需要将它们显式定义为印迹。
const Inline = Quill.import("blots/inline");
class FixedLink extends Inline {
static create(value) {
let node = super.create(value);
for (const key in value){
node.setAttribute(key, value[key]);
}
return node;
}
static formats(domNode) {
const attributes = {};
for (const attr of domNode.attributes){
attributes[attr.name] = attr.value;
}
return attributes;
}
}
FixedLink.blotName = "fixed_link";
FixedLink.tagName = "A";
添加回答
举报