1.上DjangoUeditor的github官网下载安装Ueditor,网址如下:https://github.com/zhangfisher/DjangoUeditor.git 按照readme.md安装即可
推荐下载DjangoUeditor源码到项目根目录下
2.django admin中配置富文本编辑器:
a. settings.py中添加apps:
1 | INSTALLED_APPS = ( |
b. urls.py中配置ueditor的路由:
1 | url(r'^ueditor/', include('DjangoUeditor.urls')), |
c. models.py中添加ueditor字段:
1 | from DjangoUeditor.models import UEditorWidget |
d. 在admin.py中添加ueditor
1 | # -*- encoding: utf-8 -*- |
e. 参数说明:
文件图片和视频都是保存在MEDIA_ROOT目录下,所以需要在settings.py文件中指定MEDIA_ROOT = os.path.join(BASE_DIR, ‘media’)
imagePath 保存图片的目录
filePath 保存文件的目录