“URL Media Django” Kod odpowiedzi

URL Media Django

#urls.py
from django.conf import settings
from django.conf.urls.static import static

urlpatterns=[
# define all urls
			]
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)

#other method
urlpatterns = patterns('',
    # ... the rest of your URLconf goes here ...
) + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
BlueMoon

URL Media Django

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)

# ----------------or----------------

# urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)

Condemned Chamois

gdzie możemy przechowywać obraz w projekcie Django, aby t mógł działać w pliku HTML

{% load static %}
<img src="{% static 'my_app/example.jpg' %}" alt="My image">
Victorious Vendace

URL Django Media

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

Odpowiedzi podobne do “URL Media Django”

Pytania podobne do “URL Media Django”

Więcej pokrewnych odpowiedzi na “URL Media Django” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu