“Static Dirs Django” 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

Static Dirs Django

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

File statis Django

{% load static %}
<img src="{% static "my_app/example.jpg" %}" alt="My image">
Motionless Marten

Staticfile

STATICFILES_DIRS = [BASE_DIR / 'static']
Virgin Programmer

Dir statis dalam django python

# in settings.py add the following :
STATICFILES_DIRS = [
    BASE_DIR / "static",
    '/var/www/static/',
]
mortada elharrak

Jawaban yang mirip dengan “Static Dirs Django”

Pertanyaan yang mirip dengan “Static Dirs Django”

Lebih banyak jawaban terkait untuk “Static Dirs Django” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya