AI智能
改变未来

django.template.exceptions.TemplateSyntaxError: \’staticfiles\’ is not a registered tag library.

【问题描述】

       今天在构建django-rest-swagger的时候报了如下的错误:

[code]django.template.exceptions.TemplateSyntaxError: \'staticfiles\' is not a registered tag library. Must be one of:admin_listadmin_modifyadmin_urlscachei18nl10nlogrest_frameworkstatictz

【解决办法】

       在setting.py中添加如下内容:

[code]\'libraries\': {  # Adding this section should work around the issue.\'staticfiles\': \'django.templatetags.static\',},

赞(0) 打赏
未经允许不得转载:爱站程序员基地 » django.template.exceptions.TemplateSyntaxError: \’staticfiles\’ is not a registered tag library.