Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
与使用变量相比,当我使用模板标签指向相对路径时,是否有任何差异(系统性能、响应、代码质量或我应该关心的任何内容)?模板标签是一个函数吗?哪个更快,调用函数还是变量?
示例:
<img src="{{ STATIC_URL }}images/hi.jpg" /> <img src="{% static "images/hi.jpg" %}" />
好吧,关于代码质量,Django 手册说要使用模板标签,我同意遵循手册“更正确”。但是,显然,这没什么大不了的。