我想在ckeditor上对齐左右图像,并安装了@ ckeditor / ckeditor5-image
我在我的component.ts文件中使用此配置:
import * as ClassicEditor from '@ckeditor/ckeditor5-build-classic';
editor = ClassicEditor;
ckConfig = {
extraPlugins: [ this.TheUploadAdapterPlugin ],
image: {
style: ['full', 'side', 'alignLeft', 'alignRight'],
toolbar: [ 'imageStyle:full', 'imageStyle:side', 'imageStyle:alignRight', 'imageStyle:alignLeft', '|', 'imageTextAlternative' ]
}
};
这是我的模板:
<ckeditor [editor]="editor" [config]="ckConfig" formControlName="descriptioncol"></ckeditor>
但是我在控制台上收到了这些警告:
ckeditor.js:5 toolbarview-item-unavailable: The requested toolbar item is unavailable. Read more: https://ckeditor.com/docs/ckeditor5/latest/framework/guides/support/error-codes.html#error-toolbarview-item-unavailable
{name: "imageStyle:alignLeft"}
然后我没有选择将图像向左或向右对齐。
有人可以帮助我吗?请。
谢谢。
答案 0 :(得分:-1)
应该是“样式”而不是“样式”。 :)