python的一些總結4

來源:互聯網
上載者:User

標籤:

這篇繼續水 但是在水的的基礎上 讓搭建能正常使用flask 搭建一個站

上篇講到在 模板view中 輸入{{xx }} 可以列印 後台傳的值。 這篇講一下 迴圈控制 條件控制等

修改後台代碼:

1 @app.route(‘/‘)2 def hello_world():3     #return ‘Hello World!‘4     #return jsonify({‘key‘:‘hello‘}) #返回json5     #return render_template_string(‘<html><head></head><body>1111:{{test}}</body></html>‘,test="tttt") #通過拼接字串方式6     return render_template(‘index.html‘, test="tttttt",alist=[1,2,3,4,5,6]) #普通返回 view 方式

修改前台代碼:

 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4     <meta charset="UTF-8"> 5     <title></title> 6 </head> 7 <body> 8  9 {{ test }}10 11 {# 這是注釋的寫法 #}12 {# 下面是 for 的寫法  #}13 {% for n in alist %}14     {% if n >3 %}15         {{ n }}16     {% endif %}17 {% endfor %}18 19 20 </body>21 </html>

註: for if 等運算式 需要用{%  %}  注釋 需要使用{# #}

python的一些總結4

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.