0

react-quill用作富文本编辑器。我需要插入一个已经存在的 HTML 代码,以便它在编辑器中显示为文本。有没有能力做这样的事情?

let htmlSample = "<p>It's a test html <b>to be inserted!</b></p>
<ReactQuill htmlValue="{htmlSample}" />

结果看起来像: 在此处输入图像描述

4

1 回答 1

0

好的,我明白了。如果其他人想知道如何插入纯 html - 只需像这样放置您的自定义编辑器区域:

<ReactQuill value={this.state.value}>
<div class="your-custom-container">
<p>your custom html</p>
</div>
</ReactQuill>
于 2020-11-26T00:23:42.473 回答