文章详情页
python - django模板 include模板的数据问题
浏览:102日期:2022-08-17 17:16:36
问题描述
如:views.py返回是return render(request, ’index.html’)而index.html内容是:
{% include ’header.html’ %}
然后header.html的内容可以是动态的吗?怎么写,谢谢!
{{text}}
问题解答
回答1:header可以是动态的,但是动态的变量需要render时渲染出去.如:
header.html
<script src='https://www.haobala.com/wenda/{{ static_url(’js/common.js’) }}' type='text/javascript' charset='utf-8'></script><p class='header'> {{ user.username }} </p>
index.html
<html><head></head><body> {% include 'header.html' %} <!--包含了header.html的代码--> ...</body></html>
相关文章:
1. linux - 【已解决】fabric部署的Python项目Apache启动之后提示403Forbidden该如何解决?2. python - (初学者)代码运行不起来,求指导,谢谢!3. mysql里的大表用mycat做水平拆分,是不是要先手动分好,再配置mycat4. window下mysql中文乱码怎么解决??5. python - flask sqlalchemy signals 无法触发6. nginx - pip install python库报错7. python - 获取到的数据生成新的mysql表8. python的文件读写问题?9. javascript - js 对中文进行MD5加密和python结果不一样。10. 为什么python中实例检查推荐使用isinstance而不是type?
排行榜
