简体   繁体   English

Static 文件图像 未找到 Django

[英]Static file images Not found Django

I'm making a website and the static files are not loading, when i try to accsess static files with localhost:8000/static/image.png it shows this: Page Not found (404)'image.png' could not be found and the index page is showing the image that displays when the image couldn't be found我正在制作一个网站,并且 static 文件没有加载,当我尝试使用 localhost:8000/static/image.png 访问 static 文件时,它显示:找不到页面 (404)'image.png' 找不到并且索引页面显示找不到图像时显示的图像

files:文件:

VoicesOnTheSpectrum
    VoicesOnTheSpectrum
        __init__.py
        asgi.py
        settings.py
        urls.py
        wsgi.py
    vots
        migrations
        static
            image.png
            logo.png
            style.css
            votstop.png
        templates
            vots
                base.html
                index.html
        __init__.py
        admin.py
        apps.py
        models.py
        tests.py
        urls.py
        views.py
    manage.py

settings.py:设置.py:

from pathlib import Path
import os

BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
TEMPLATE_DIR = os.path.join(BASE_DIR, "vots", "templates")
SECRET_KEY = 'secret'
DEBUG = True
ALLOWED_HOSTS = []

INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
]

MIDDLEWARE = [
    'django.middleware.security.SecurityMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.common.CommonMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'django.middleware.clickjacking.XFrameOptionsMiddleware',
]

ROOT_URLCONF = 'VoicesOnTheSpectrum.urls'

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [TEMPLATE_DIR,],
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                'django.template.context_processors.debug',
                'django.template.context_processors.request',
                'django.contrib.auth.context_processors.auth',
                'django.contrib.messages.context_processors.messages',
            ],
        },
    },
]

WSGI_APPLICATION = 'VoicesOnTheSpectrum.wsgi.application'

# Static files (CSS, JavaScript, Images)
STATIC_URL =  '/static/'

STATICFILES_DIRS = [ os.path.join(BASE_DIR, 'static')]
# STATIC_ROOT = os.path.join(BASE_DIR, "static")

index:指数:

{% extends "vots/base.html" %}
{% load static %}

{% block content %}
        <div role="img">
            <img src="{% static 'votstop.png' %}">
        </div>
{% endblock %}

base:根据:

<!DOCTYPE html>
<html>
<head>
    <title>{% block title %}{% endblock %}Voices On The Spectrum</title>
    <link rel="stylesheet" type="text/css" href="{% static 'style.css' %}">
</head>
<body>
    <div class="navbar">
    </div>
    <div class="body">
        {% block content %}

        {% endblock %}      
    </div>

    <div class="footer">
        <p>Copyright &copy; {% now "Y" %} Voices on the Spectrum - All Rights Reserved.</p>
        <div class="insta">
            <a href="https://www.instagram.com/voicesonthespectrum/"><img src="{% static 'image.png' %}" alt="Instagram"></a>
        </div>
    </div>
</body>
</html>

You need to add the view(s) to your urlpatterns to serve static (and media) files:您需要将视图添加到您的urlpatterns以提供 static(和媒体)文件:

# VoicesOnTheSpectrum/urls.py

from django.conf import settings
from django.conf.urls.static import static

urlpatterns = [
    # … other urls patterns …
]

urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)

My Answer我的答案

just needed to add my app to installed apps只需将我的应用程序添加到已安装的应用程序中

INSTALLED_APPS = [
'vots',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
]

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM