0
export class EditBlogComponent implements OnInit {
   ...
   blog: Blog;
   ...


 editorStyle = {
    height: '400px;'
  };

  editorConfig = {
    toolbar: [
      ['bold', 'italic', 'underline', 'strike'],        // toggled buttons
      ['blockquote', 'code-block'],

      ['link', 'image', 'video']                         // link and image, video
    ]
  };


  ngOnInit(): void {
      ...
      //I got the blog with HttpClient from API and I synchronized it with my blog variable.
      this.blog = data;
      ...
  }
}

此代码来自我的 edit-blog.component.html。当 Angular 页面为 OnInit() 时,我想将博客描述设置为 quill editor

 <quill-editor [content]="blog.description" [style]="editorStyle" [modules]="editorConfig" (onEditorChanged)="changedEditor($event)"></quill-editor>

但是当我将 [content]="blog.description" 添加到 HTML 时,我得到了错误。错误是;

  1. 如果 'quill-editor' 是一个 Angular 组件并且它有 'content' 输入,那么验证它是这个模块的一部分。
  2. 如果“quill-editor”是一个 Web 组件,则将“CUSTOM_ELEMENTS_SCHEMA”添加到该组件的“@NgModule.schemas”以禁止显示此消息。
  3. 要允许任何属性,请将“NO_ERRORS_SCHEMA”添加到此组件的“@NgModule.schemas”。
4

0 回答 0