考虑没有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
路径渲染的。