包含html和模板语言代码
Template和Context对象
python manage.py shell 进入django环境
t=Template(html)
c=Context(字典)
t.render(c)
深度查询:句点符{ {action.l}} 列表
{ {action.name}} 字典
本文共 210 字,大约阅读时间需要 1 分钟。
包含html和模板语言代码
Template和Context对象
python manage.py shell 进入django环境
t=Template(html)
c=Context(字典)
t.render(c)
深度查询:句点符{ {action.l}} 列表
{ {action.name}} 字典
转载于:https://www.cnblogs.com/jintian/p/11135601.html