1

我正在尝试从这里使用 ckeditor 包:https ://github.com/shaunsephton/django-ckeditor 。我已按照说明进行操作,但我似乎无法弄清楚包含 ckeditor.js 文件的路径是什么。

每次我进入带有 ckeditor 小部件/字段的页面时,我都会收到一个 javascript 错误,因为:

未捕获的 ReferenceError:CKEDITOR 未定义

我确实运行了 collectstatic 等。

4

1 回答 1

1

再看看提供静态文件的文档

如果您正在开发和使用runserver,您需要将以下内容添加到您的 url conf -

from django.contrib.staticfiles.urls import staticfiles_urlpatterns

# ... the rest of your URLconf goes here ...

urlpatterns += staticfiles_urlpatterns()

具体参见文档的这一部分。

于 2012-12-11T17:46:02.747 回答