“Statische Dateien in Django” Code-Antworten

So fügen Sie statische Dateien in Django hinzu

STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
STATICFILES_DIRS = [
    BASE_DIR / 'static'
]
Ashamed Anaconda

Laden Sie statische Dateien in Django

{% load static %}
<img src="{% static 'my_app/example.jpg' %}" alt="My image">
Enthusiastic Emu

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

Statische Vermögenswerte in Django

STATIC_URL = '/static/'
STATICFILES_DIRS = [
    os.path.join(BASE_DIR, 'static'),
]
STATIC_ROOT = os.path.join(BASE_DIR, 'static_root')
 
 
MEDIA_URL = '/media/'
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
Frail Fowl

Statische Dateien in Django

STATICFILES_DIRS = [
    BASE_DIR / "static",
    '/var/www/static/',
]
Different Deer

Ähnliche Antworten wie “Statische Dateien in Django”

Fragen ähnlich wie “Statische Dateien in Django”

Weitere verwandte Antworten zu “Statische Dateien in Django” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen