“Charger statique” Réponses codées

Mon modèle django ne veut pas charger le fichier statique

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

STATICFILES_DIRS = ( 
    STATIC_ROOT,        
)
Cooperative Copperhead

Fichiers / modèles statiques django

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

Ajouter un fichier statique dans Django

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

statiques

STATICFILES_DIRS = [BASE_DIR / 'static']
Virgin Programmer

Charger statique

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

Réponses similaires à “Charger statique”

Questions similaires à “Charger statique”

Plus de réponses similaires à “Charger statique” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code