“Last statisch” 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

Fügen Sie eine statische Datei in Django hinzu

STATICFILES_DIRS = [
    BASE_DIR / "static",
    '/var/www/static/',
]
Plain Pheasant

staticfiles

STATICFILES_DIRS = [BASE_DIR / 'static']
Virgin Programmer

Last statisch

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)
Magnificent Mosquito

Ähnliche Antworten wie “Last statisch”

Fragen ähnlich wie “Last statisch”

Weitere verwandte Antworten zu “Last statisch” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen