ckeditor的config.js文件(我在vs代码的cli中使用npm安装了该文件)在哪里?我搜索了所有地方,包括我的节点模块,但似乎找不到它。另外,我必须删除ckeditor顶部栏上的一些选项,即图像和媒体上传器。有人可以帮我吗
谢谢
答案 0 :(得分:0)
如果要将自己的配置添加到ckeditor,则应使用以下内容:
html文件:
<ckeditor [config]="config">
</ckeditor>
在ts文件中,您应该创建config
对象:
this.config = {
toolbar: [
['Maximize'],
['Format', 'FontSize'],
['Bold', 'Italic', 'Underline', 'Strike', 'RemoveFormat'],
['TextColor', 'BGColor'],
['NumberedList', 'BulletedList'],
['JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock'],
['Table'],
['Cut', 'Copy'],
['Link', 'Unlink'],
['Undo', 'Redo']
]
};
此示例显示了如何配置工具栏中可用的按钮。
例如,您还可以在此处阅读有关与angular集成的信息: https://ckeditor.com/docs/ckeditor4/latest/guide/dev_angular.html