django-ckeditor:不包括ckeditor js文件
Posted
技术标签:
【中文标题】django-ckeditor:不包括ckeditor js文件【英文标题】:django-ckeditor: ckeditor js file not included 【发布时间】:2012-12-11 17:27:34 【问题描述】:我正在尝试从这里使用 ckeditor 包:https://github.com/shaunsephton/django-ckeditor。我已按照说明进行操作,但我似乎无法弄清楚包含 ckeditor.js 文件的路径。
每次我访问带有 ckeditor 小部件/字段的页面时,我都会收到一个 javascript 错误:
Uncaught ReferenceError: CKEDITOR is not defined
我确实运行了 collectstatic 等。
【问题讨论】:
【参考方案1】:再看一下docs 以提供静态文件。
如果您正在开发并使用runserver
,您需要将以下内容添加到您的 url conf -
from django.contrib.staticfiles.urls import staticfiles_urlpatterns
# ... the rest of your URLconf goes here ...
urlpatterns += staticfiles_urlpatterns()
具体参见docs 的这一部分。
【讨论】:
以上是关于django-ckeditor:不包括ckeditor js文件的主要内容,如果未能解决你的问题,请参考以下文章
Django-CKeditor:如何在模板中显示 RichTextFields