Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试从这里使用 ckeditor 包:https ://github.com/shaunsephton/django-ckeditor 。我已按照说明进行操作,但我似乎无法弄清楚包含 ckeditor.js 文件的路径是什么。
每次我进入带有 ckeditor 小部件/字段的页面时,我都会收到一个 javascript 错误,因为:
未捕获的 ReferenceError:CKEDITOR 未定义
我确实运行了 collectstatic 等。
再看看提供静态文件的文档。
如果您正在开发和使用runserver,您需要将以下内容添加到您的 url conf -
runserver
from django.contrib.staticfiles.urls import staticfiles_urlpatterns # ... the rest of your URLconf goes here ... urlpatterns += staticfiles_urlpatterns()
具体参见文档的这一部分。