Karrigell/在模板中插入動態值
外觀
模板系統使用 Python 字串格式化
建立一個名為 page.tmpl 的模板
<html>
<head>
<title>{title}</title>
</head>
<body>
Hello {name}
</body>
</html>
然後編輯 index.py 並新增此函式
def bar(name):
return Template('page.tmpl',title='template test',name=name)
輸入 https:///index.py/bar?name=Joe 檢視模板引擎如何用傳遞給 Template 函式的值替換佔位符 {title} 和 {name}