uniapp <editor/>使用setContents后的样式问题

uniapp <editor/>使用setContents后的样式问题_第1张图片

//源代码
const replyStr = `#${item.name}#`;
this.postEditor.setContents({
        html: replyStr,
});

使用uniapp的setContents(),初始显示一段红色的文字(1),接着输入新内容(2),会发现新内容的颜色被带成了红色,我想要新输入的内容被显示成原来默认输入的样式怎么办呢?

在这里插入图片描述
好办,在replyStr后面加上 ,使初始内容后显示默认样式。

//修改后的代码
const replyStr = `#${item.name}# `;
this.postEditor.setContents({
        html: replyStr,
});

好了,我想要的实现了。
在这里插入图片描述

你可能感兴趣的:(技术小白,前端,微信小程序)