gpt4 book ai didi

django - 无法自定义 django ckeditor 工具栏

转载 作者:行者123 更新时间:2023-12-03 21:31:43 27 4
gpt4 key购买 nike

我安装了 django-ckeditor==4.4.8 django1.6

但是我在工具栏中获得了最少的按钮,我尝试更改工具栏以获得更多选项,特别是能够添加图片

这就是我得到的:

enter image description here

这些是我的设置:

#ckeditor settings
CKEDITOR_UPLOAD_PATH = "images/"
CKEDITOR_IMAGE_BACKEND = 'pillow'
CKEDITOR_JQUERY_URL = '//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js'

AWS_QUERYSTRING_AUTH = False
CKEDITOR_CONFIGS = {
'default': {
'toolbar':'Full',
},

}

顺便说一句,我想知道当您添加图片然后从文本编辑器中删除该图片链接时会发生什么,
那张照片要删除吗?

最佳答案

尝试将其放入您的设置文件中:

CKEDITOR_CONFIGS = {
'default': {
'toolbar_Full': [
['Styles', 'Format', 'Bold', 'Italic', 'Underline', 'Strike', 'SpellChecker', 'Undo', 'Redo'],
['Link', 'Unlink', 'Anchor'],
['Image', 'Flash', 'Table', 'HorizontalRule'],
['TextColor', 'BGColor'],
['Smiley', 'SpecialChar'], ['Source'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
['NumberedList','BulletedList'],
['Indent','Outdent'],
['Maximize'],
],
'extraPlugins': 'justify,liststyle,indent',
},
}

关于django - 无法自定义 django ckeditor 工具栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31049653/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com