一. 配置模板路徑html
settings中使用template_path來指定模板的路徑, 實例化服務對象時加載進去便可.htm
二. 模板的使用對象
1. 使用self.render()方法可返回指定的html頁面模板
2. html中的變量與表達式:變量
self.render('xx.html', name='alex')配置
html中使用{{ name }}便可, 若是傳入的是字典, 不能使用點取值, 需使用[]取值方法
3. 流程控制字典
{% if 表達式 %} ... {% elif 表達式 %} ... {% else %} ... {% end %}path