inflearn logo
강의

강의

N
챌린지

챌린지

멘토링

멘토링

N
클립

클립

로드맵

로드맵

지식공유

Vue-Django-Bootstrap 뚝딱 블로그

Post-Detail 임시 화면

TypeError: 'module' object is not callable 문제

907

김회민
0

from django.conf import settings
from django.conf.urls import static
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
 
이 부분에서
TypeError: 'module' object is not callable
에러가 뜬다면
 
from django.conf.urls import static 을
from django.conf.urls.static import static
로 변경해주세요

static

답변 0