tuxlcsdn 2019-07-01
最近一段时间都在学django,现在的网站基本都要使用到富文本编辑器,今天就记录下使用django的管理后台的一个富文本编辑器的第三方库 DjangoUeditor
方法一:将github整个源码包下载回家,在命令行运行:
python setup.py install
方法二:使用pip工具在命令行运行(推荐):
pip install DjangoUeditor
<!-- more -->
INSTALLED_APPS = [ ... 'DjangoUeditor' ]
# 富文本 path('ueditor/', include('DjangoUeditor.urls')),
# 引入 UEditorField from DjangoUeditor.models import UEditorField # 使用 class Demo(model.Model): detail = UEditorField(verbose_name=u'详情', width=600, height=300, imagePath="courses/ueditor/", filePath="courses/ueditor/", default='')
{% autoescape off %} {{ course.detail }} {% endautoescape %}
#在该模块的 xadmin.py 中加上 style_fields = {"detail": "ueditor"}
TypeError: render() got an unexpected keyword argument 'renderer'
需要修改虚拟环境下的:boundfield.py文件: .virtualenvs/虚拟环境文件/lib/python3.X/site-packages/django/forms/boundfield.py
89 return widget.render( 90 name=self.html_initial_name if only_initial else self.html_name, 91 value=self.value(), 92 attrs=attrs, 93 # renderer=self.form.renderer,(93行处注 释掉,就能正常运行了) 94 )