“Django statische URL” Code-Antworten

Meine Django -Vorlage möchte die statische Datei nicht laden

STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, "/static/")

STATICFILES_DIRS = ( 
    STATIC_ROOT,        
)
Cooperative Copperhead

statische Django -Dateien / Vorlagen

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

urlpatterns = [
    # ... the rest of your URLconf goes here ...
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
Nyn

statisch in Django -URLs importieren

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

urlpatterns = [
    # ... the rest of your URLconf goes here ...
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
Clever Constrictor

statische Django -Dateien / Vorlagen

STATICFILES_DIRS = [
    os.path.join(BASE_DIR, "static"),
    '/var/www/static/',
]
Nyn

statische Django -Dateien

{% load static %}
<img src="{% static "my_app/example.jpg" %}" alt="My image">
Motionless Marten

Django statische URL

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

urlpatterns = [
    # ... the rest of your URLconf goes here ...
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
Helpless Hamster

Ähnliche Antworten wie “Django statische URL”

Fragen ähnlich wie “Django statische URL”

Weitere verwandte Antworten zu “Django statische URL” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen