Django 的一些错误以及处理

python学习网 2019-01-03 00:07:02

django.template.exceptions.TemplateSyntaxError: Invalid block tag on line 589: 'static', expected 'endblock'. Did you forget to register or load this tag?

在Django模板继承的block块内使用static需要重新导入

{% extends 'xproject/base.html' %}
{% load staticfiles %}

 

阅读(5991) 评论(0)