python的一些總結3

來源:互聯網
上載者:User

標籤:

好吧 剛剛的2篇文章都很水。。

這篇 也是繼續水

在 templates 右鍵建立 html 檔案:如 index.html (輸入以下代碼)

 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 </body>11 </html>

注意 除了{{test}} 其他 都是 自動產生。

回到 xxx.py 檔案 修改 hello_world 方法:

如下:

 1 #encoding=utf-8 2 from flask import Flask, render_template,jsonify,render_template_string 3  4 app = Flask(__name__) 5  6  7 @app.route(‘/‘) 8 def hello_world(): 9     #return ‘Hello World!‘10     #return jsonify({‘key‘:‘hello‘}) #返回json11     #return render_template_string(‘<html><head></head><body>1111:{{test}}</body></html>‘,test="tttt") #通過拼接字串方式12     return render_template(‘index.html‘, test="tttttt") #普通返回 view 方式13 14 15 if __name__ == ‘__main__‘:16     app.run(debug=True)

如 代碼 view 中{{test}} 為 列印 test,需要 後代返回 view時 傳遞參數test

python的一些總結3

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.