Django:TypeError:static()得到了一个意外的关键字参数'document_root'

时间:2017-01-20 02:18:45

标签: django django-rest-framework

我正在尝试通过网络浏览器/ DRF可浏览的API查看我上传的图片。所以我将MEDIA_URLMEDIA_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)

1 个答案:

答案 0 :(得分:7)

此错误是由于导入错误 static 的引用。请尝试使用from django.conf.urls.static import static代替from django.templatetags.static import static