我正在尝试通过网络浏览器/ DRF可浏览的API查看我上传的图片。所以我将MEDIA_URL
和MEDIA_ROOT
添加到我的setting.py文件中。当我尝试运行代码时,它会显示TypeError: static() got an unexpected keyword argument 'document_root'
。
这是我的相关代码部分,
settings.py
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
MEDIA_ROOT = os.path.join(BASE_DIR,'Images')
MEDIA_URL = '/Images/'
的 urls.py
from django.conf.urls import include, url
from django.contrib import admin
from django.templatetags.static import static
urlpatterns = [
# Examples:
# url(r'^$', 'project.views.home', name='home'),
# url(r'^blog/', include('blog.urls')),
url(r'^$', index),
url(r'^health$', health),
url(r'^admin/', include(admin.site.urls)),
url(r'^sample/',sampelview),
url(r'myapp/',include(myRouter.urls)),
url(r'^test/$', testRequest),
]+static(settings.MEDIA_URL,document_root=settings.MEDIA_ROOT)
答案 0 :(得分:7)
此错误是由于导入错误 static 的引用。请尝试使用from django.conf.urls.static import static
代替from django.templatetags.static import static