django-ckeditor忽略静态存储设置

时间:2016-06-27 04:46:24

标签: django azure ckeditor django-storage django-ckeditor

我在admin和django-storage中使用django-ckeditor与Azure Storage for static&媒体文件。

admin中的所有静态文件都是从Azure存储加载的,但CKEditor的文件不是:

<script type="text/javascript" src="https://somehost.blob.core.windows.net/blob/admin/js/core.js"></script>
...
<script type="text/javascript" src="/static/ckeditor/ckeditor/ckeditor.js"></script>
<script type="text/javascript" src="/static/ckeditor/ckeditor-init.js"></script>

为什么以及如何解决它?

1 个答案:

答案 0 :(得分:0)

好的,根据this link,我需要将MEDIA_URL和STATIC_URL设置为我的Azure存储主机。