如何在Django网站中的TinyMCE上通过本地/ PC /浏览添加上传图像选项?

时间:2018-10-21 10:55:15

标签: python django tinymce

我已将TinyMCE编辑器添加到我的网站,但找不到使用设备上的浏览选项允许用户通过本地计算机插入图像的选项。 使用的pip包-django-tinymce4-lite。

这些是settings.py文件中的设置:

TinyMCE编辑器设置变量

TINYMCE_DEFAULT_CONFIG = {
'height': 360,
'width': 1120,
'cleanup_on_startup': True,
'custom_undo_redo_levels': 20,
'selector': 'textarea',
'theme': 'modern',
'plugins': '''
        textcolor save link image media preview codesample contextmenu
        table code lists fullscreen  insertdatetime  nonbreaking
        contextmenu directionality searchreplace wordcount visualblocks
        visualchars code fullscreen autolink lists  charmap print  hr
        anchor pagebreak
        ''',
'toolbar1': '''
        fullscreen preview bold italic underline | fontselect,
        fontsizeselect  | forecolor backcolor | alignleft alignright |
        aligncenter alignjustify | indent outdent | bullist numlist table |
        | link image media | codesample |
        ''',
'toolbar2': '''
        visualblocks visualchars |
        charmap hr pagebreak nonbreaking anchor |  code |
        ''',
'contextmenu': 'formats | link image',
'menubar': True,
'statusbar': True,}

0 个答案:

没有答案