我正在尝试在Django的grappelli admin上使用ckeditor。在本地环境中,它运行良好并且显示良好。但是,将其部署到生产环境中之后。编辑器未显示。
就像您在下面看到的图片一样,它只是空白,什么也没有。
settings.py
DJANGO_APPS = [
...
'ckeditor',
'ckeditor_uploader'
]
CKEDITOR_UPLOAD_PATH = "ckeditor_uploads/"
CKEDITOR_CONFIGS = {
'default': {
'toolbar': [["Format", "Bold", "Italic", "Underline", "Strike", "SpellChecker"],
['NumberedList', 'BulletedList', "Indent", "Outdent", 'JustifyLeft', 'JustifyCenter',
'JustifyRight', 'JustifyBlock'],
["Image", "Table", "Link", "Unlink", "Anchor", "SectionLink",
"Subscript", "Superscript"], ['Undo', 'Redo'], ["Source"],
["Maximize"]],
},
}
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
这些都是我的Django应用中ckeditor的所有设置。 有人知道为什么会这样吗?