在ng-Quill编辑器中设置要编辑的文本

时间:2019-06-20 14:23:31

标签: javascript angular typescript quill

我在表单中使用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]
    })
})

该代码不会更新该值。如何在上面列出的订阅中设置笔芯编辑器的值?

0 个答案:

没有答案