📜  django 静态媒体 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:09.981000             🧑  作者: Mango

代码示例1
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)