我刚刚将 quilljs 集成到我的应用程序中。我现在面临的一个问题是 p 标签的一些奇怪行为。
例如,在我的组件中,我正在设置反应形式:
this.fullDocumentFormGroup = new FormGroup({
fullDocument: new FormControl('<p>some</p><p>html</p>', [Validators.required])
});
在模板中:
<form [formGroup]="fullDocumentFormGroup" class="full-document">
<quill-editor placeholder="Detailed documentation of your invention here..."
[style]="{'min-height': '250px'}"
bounds="self"
formControlName="fullDocument"
[readOnly]="isProjectLocked()">
</quill-editor>
</form>
此代码最终将编辑器的内容设置为:
<p>somehtml</p>
我用 textarea 对其进行了测试,以检查反应形式是否将其剥离,而事实并非如此。
尝试向 quill-editor 添加属性[sanitize]="true"
=> 没有任何变化。
我错过了什么?
另一个想法
可能,它会剥离所有标签并简单地用p
标签包装内容。
但是,如果我在段落之间添加另一个 ' ',它的格式会保持正确。