“Carregar estático” Respostas de código

Meu modelo de django não quer carregar o arquivo estático

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

STATICFILES_DIRS = ( 
    STATIC_ROOT,        
)
Cooperative Copperhead

Django estático arquivos / modelos

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

Adicionar arquivo estático em django

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

Staticfiles

STATICFILES_DIRS = [BASE_DIR / 'static']
Virgin Programmer

Carregar estático

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

Respostas semelhantes a “Carregar estático”

Perguntas semelhantes a “Carregar estático”

Mais respostas relacionadas para “Carregar estático” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código