在模版中使用load标签加载static标签。比如要加载在项目的static文件夹下的style.css的文件。
如果当前页面继承base.html页面 必须写在{% extends “base.html” %} 之下
如果不想每次在模版中加载静态文件都使用load加载static标签,那么可以在settings.py中的TEMPLATES/OPTIONS添加’builtins’:[‘django.templatetags.static’],这样以后在模版中就可以直接使用static标签,而不用手动的load了
Djang中{% static % }的使用
最新推荐文章于 2024-10-11 23:48:46 发布