在 flask 的 App 中可以使用 jinja2 樣板引擎更有彈性、更簡化的撰寫HTML檔。
在樣板中,主要的三種括號如下:
- {% ... %} for Statements
- {{ ... }} for Expressions to print to the template output
- {# ... #} for Comments not included in the template output
在 flask 的 App 中可以使用 jinja2 樣板引擎更有彈性、更簡化的撰寫HTML檔。
在樣板中,主要的三種括號如下: