我如何将来自summernote输入的数据与Angular 5绑定

时间:2018-05-26 23:24:58

标签: angular summernote

如何将来自summernote输入的数据与Angular 5绑定?

component.html

<textarea class="form-control" ngModel
         name="description"
         id="summernote"
         [(ngModel)]="learningunit.description"
         maxlength="10000" rows="50"></textarea>

component.ts

declare var $: any;

ngOnInit() {

  $('#summernote').summernote({
         height: 150,
      });
}

1 个答案:

答案 0 :(得分:0)

组件中的

description;
模板中的

<textarea class="form-control" ngModel
         name="description"
         id="summernote"
         [(ngModel)]="description"
         maxlength="10000" rows="50"></textarea>

在现实生活中

https://angular.io/docs