django에서 - TypeError: view must be a callable or a list/tuple in the case of include ().

517 단어 Django
이 문제는 오랫동안 계속되었다.
이것은django 버전의 원인으로 인한 오류입니다.
원래 구성
from django.conf import settings
    url(r'uploads/(?P.*)$',\
                'django.views.static.serve',\   
                {'document_root':settings.MEDIA_ROOT,})  

업데이트 후 구성
from django.views.static import serve
    url(r'^uploads/(?P.*)$',\
        serve,\
        {'document_root':settings.MEDIA_ROOT,})    

이렇게 해야만 운행할 수 있다!

좋은 웹페이지 즐겨찾기