我在表单中使用ng-quill
编辑器。我需要从组件中设置我的反应形式的值,但我不知道如何。我尝试按照文档进行操作,但仍然无法设置该值。
HTML:
<quill-editor ng-model="content" (onEditorCreated)="getEditorInstance($event)" formControlName="postContent"></quill-editor>
<input type="file" style="display: none" id="fileInputField" />
并更新postContent
:
this.newsService.GetItemById(this.ModelId, this.GetDitailUrl).subscribe(data => {
console.log(this.content)
this.EditFG.setValue({
postContent: [data.data.postContent]
})
})
该代码不会更新该值。如何在上面列出的订阅中设置笔芯编辑器的值?