私の静的ファイル設定は
STATIC_URL = 'static/'
STATIC_ROOT = os.path.join(PROJECT_PATH, 'static')
そして、自分のプロジェクトと urls.py に ckeditor をインストールします。
url(r'static/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.STATIC_ROOT,}),
(r'^ckeditor/', include('ckeditor.urls')),
から ckeditor.js をhttp://127.0.0.1:8000/admin/chicinfo/article/add/static/static/ckeditor/ckeditor/ckeditor.js
取得すると、このファイルを取得できません。下の写真は私の問題を示しています:
私はどうなりますか?