使ckeditor不可编辑的参数?

Parameter to make the ckeditor not editable?

有没有设置ckeditor不可编辑的参数? 这是我查看组件的代码。我在 angular

<ckeditor 
  [(ngModel)]="salesCondition.DeliveryTimeHtmlFormatted" 
  [ngModelOptions]="{standalone: true}" >
</ckeditor>

是的。有一个 [readonly]="true" 参数可用于禁用编辑器的编辑。

像这样使用它:

<ckeditor 
  [(ngModel)]="salesCondition.DeliveryTimeHtmlFormatted" 
  [readonly]="true"
  [ngModelOptions]="{standalone: true}" >
</ckeditor>