これは私のプロジェクトのディレクトリ構造です。奇妙な理由で、ルート テンプレート ディレクトリの base.html は {{MEDIA_URL}} にアクセスしませんが、カート ディレクトリの base.html (同一のコピー) は {{MEDIA_URL}} にアクセスできます。
もう1つの奇妙なことは、base.htmlにこのコードがあることです
Hi there,
{% if user.is_authenticated %}
{{request.user.first_name}}
{% else %}
Stranger
{% endif %}
</br>
テンプレートルートディレクトリに「{% if user.is_authenticated %}」と入力することはありませんが、カート内の base.html と完全に連携します。
これは私のsettings.pyです
# Absolute filesystem path to the directory that will hold user-uploaded files.
# Example: "/home/media/media.lawrence.com/media/"
MEDIA_ROOT = '/home/ec2-user/foodchute/foodchute/images'
# URL that handles the media served from MEDIA_ROOT. Make sure to use a
# trailing slash.
# Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
MEDIA_URL = '/images/'