Django - 自定义过滤器,用于检查文件是否存在

时间:2013-08-21 18:00:15

标签: django django-models django-templates django-template-filters

我制作了这个自定义过滤器来检查图像是否存在:

from django import template
from django.core.files.storage import default_storage

register = template.Library()

@register.filter(name='file_exists')
def file_exists(filepath):
    if default_storage.exists(filepath):
        return filepath
    else:
        index = filepath.rfind('/')
        new_filepath = filepath[:index] + '/image.png'
        return new_filepath

我在模板中使用了这个:

<img src="{{ STATIC_URL }}images/{{ book.imageurl }}|file_exists" alt="{{book.title}} Cover Photo">

但它不起作用。我不明白为什么。

1 个答案:

答案 0 :(得分:6)

您没有应用过滤器,因为|file_exists超出了{{}}。试试这个:

<img src="{{ STATIC_URL }}images/{{ book.imageurl|file_exists }}" alt="{{book.title}} Cover Photo">

或者,如果您想将file_exists应用于整个图片网址,请尝试以下操作:

<img src="{{ STATIC_URL|add:'images/'|add:book.imageurl|file_exists }}" alt="{{book.title}} Cover Photo">