文章详情页
python - django模板 include模板的数据问题
浏览:130日期: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. css3 - [CSS] 动画效果 3D翻转bug2. python - Django分页和查询参数的问题3. javascript - 百度echarts series数据更新问题4. MySQL客户端吃掉了SQL注解?5. javascript - JS设置Video视频对象的currentTime时出现了问题,IE,Edge,火狐,都可以设置,反而chrom却...6. php自学从哪里开始?7. python小白的基础问题 关于while循环的嵌套8. 求大神帮我看看是哪里写错了 感谢细心解答9. phpstady在win10上运行10. javascript - 图片能在网站显示,但控制台仍旧报错403 (Forbidden)
排行榜
