画像が存在するかどうかを確認するために、このカスタム フィルターを作成しました。
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">
しかし、うまくいきません。そして、私には理由がわかりません。