<p-editor>无法绑定 [ngModel]

<p-editor> can not bind [ngModel]

提问人:mathan 提问时间:10/5/2023 更新时间:10/5/2023 访问量:16

问:

'在这里我使用 primeng : ^14.2.2 ,angular: ^14.2.2,quill: ^2.0.0-dev.4,quill-better-table: ^1.2.10数据来自数据库,但 ngModel 未在文本编辑器中绑定。

请求.html: ** app.module.ts<p-editor name="longdesc" [(ngModel)]="requestType.longDescription" [style]="{'height':'220px'}"></p-editor>**

import Quill from 'quill';
import QuillBetterTable from 'quill-better-table';
Quill.register({
    'modules/better-table': QuillBetterTable,
    'modules/blotFormatter': BlotFormatter,
}, true);

// @ts-expect-error. We a

重新强制执行以下类型更改,以使 Primeng 的编辑器与新版本的 Quill (v2) 一起使用 Quill.prototype.pasteHTML = function (html: string) { return this.clipboard.dangerouslyPasteHTML(html);

ngmodel need to bind in the text editor`
typescript npm primeng 文本编辑器 ngmodel

评论


答: 暂无答案