在這個課程中,我們介紹如何使用 Flask 來做網頁。
- 簡單介紹如何使用 Flask。
- 簡單說明一下 jinja2 Template Engine 的使用 (Jinja 2, template 像 temple… jinja是神社的意思,就是日本的廟。)…
- 簡單說明一下如何佈署上 Heroku… (需要會使用 git)
- 實做一個地圖網站
- 實做一個股票線圖網站
在 flask 的應用中,它可以使用 jinja2 樣板引擎,更有彈性的及更簡化的撰寫 HTML 檔。
在樣板中,主要的三種括號如下:
- {% ... %} for Statements
- {{ ... }} for Expressions to print to the template output
- {# ... #} for Comments not included in the template output