“Django 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

CSS Django

{% load static %}

<link rel="stylesheet" type="text/css" href="{% static 'polls/style.css' %}">
Anxious Anaconda

statische Django -Dateien / Vorlagen

STATICFILES_DIRS = [
    os.path.join(BASE_DIR, "static"),
    '/var/www/static/',
]
Nyn

statische Django -Dateien

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

Ähnliche Antworten wie “Django statisch”

Fragen ähnlich wie “Django statisch”

Weitere verwandte Antworten zu “Django statisch” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen