标签: django ckeditor
我正在尝试使用此处的ckeditor包:https://github.com/shaunsephton/django-ckeditor。我已按照说明进行操作,但我似乎无法弄清楚包含ckeditor.js文件的路径。
每次我使用ckeditor小部件/字段进入页面时都会出现javascript错误:
未捕获的ReferenceError:未定义CKEDITOR
我确实运行过collectstatic等。
答案 0 :(得分:1)
再看一下docs提供的静态文件。
如果您正在开发并使用runserver,则需要将以下内容添加到您的网址 -
runserver
from django.contrib.staticfiles.urls import staticfiles_urlpatterns # ... the rest of your URLconf goes here ... urlpatterns += staticfiles_urlpatterns()
请专门查看docs的此部分。