Django CMS:如何从内容传送网络(CDN)加载图像

时间:2018-09-14 11:32:48

标签: python django django-cms divio

考虑没有django-CMS的情况:

在我的HTML文件中

{% static 'mypath/mypic.svg' %}

在我的 settings.py

 try:
    static_url = cdn_connect()   # this method returns the cdn url
 exception:
    static_url = '/static'

以上设置工作正常,并且从CDN渲染了图像。但是现在我想将其与Django-CMS一起使用。

我在图像{% static 'mypath/mypic.svg' %}属性中使用了/static/mypath/mypic.svg(而不是使用src(使用文本插件作为图像插件不支持此/ static /路径)。

现在这些图像是通过'/static'路径而不是CDN路径渲染的。

0 个答案:

没有答案