“memuat statis” Kode Jawaban

Template Django saya tidak ingin memuat file statis

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

STATICFILES_DIRS = ( 
    STATIC_ROOT,        
)
Cooperative Copperhead

File / Templat Statis 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

Tambahkan file statis di django

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

Staticfile

STATICFILES_DIRS = [BASE_DIR / 'static']
Virgin Programmer

memuat statis

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

Jawaban yang mirip dengan “memuat statis”

Pertanyaan yang mirip dengan “memuat statis”

Lebih banyak jawaban terkait untuk “memuat statis” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya