1

当我使用 ckeditor 在 django admin 中创建一个帖子时,它是一个好看的帖子。但是当我需要编辑它时,我会在所见即所得模式下看到所有 html 标签和样式(所有源代码)。

当我写作时:
在此处输入图像描述

在“保存并继续编辑”之后
在此处输入图像描述

我在模型中使用 RichTextField。
PS django-ckeditor-updated from PyPI
也许我的配置有问题?

CKEDITOR_CONFIGS = {
    'default': {
        'toolbar': 'UltraFull',
        'height': 300,
        'toolbar_UltraFull': [
            ['Font', 'FontSize', 'Format'],
            ['Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat'],
            [
                'NumberedList', 'BulletedList', '-',
                'Outdent', 'Indent', '-',
                'Blockquote', '-',
                'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock'
            ],
            ['Link', 'Unlink', 'Anchor'],
            ['Image', 'Flash', 'Table', 'HorizontalRule', 'PageBreak', 'Smiley', 'SpecialChar'],
            ['Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo'],
            ['TextColor', 'BGColor'],
            ['Maximize', 'Source'],
        ],
        'language': 'ru',
        'forcePasteAsPlainText': True,
    },
}
4

1 回答 1

0

它可能是“forcePasteAsPlainText”:真,

克隆我的 django-ckeditor-extended 存储库并运行演示应用程序 - https://github.com/riklaunim/django-ckeditor - 检查它是否适用于您在管理员中,如果适用,则应用您的设置并进行比较

于 2014-02-28T11:21:36.357 回答