1

ckeditor を使用して django admin で投稿を作成すると、見栄えの良い投稿が作成されます。しかし、編集する必要があるときは、すべての html タグとスタイル (すべてのソース) が wysiwyg モードで表示されます。

私が書いているとき:
ここに画像の説明を入力

「保存して編集を続ける」後
ここに画像の説明を入力

モデルで 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」の可能性があります: True,

django-ckeditor-extended のリポジトリを複製し、デモ アプリを実行します - https://github.com/riklaunim/django-ckeditor - 管理者で機能するかどうかを確認し、機能する場合は設定を適用して比較します

于 2014-02-28T11:21:36.357 に答える