您好,登錄后才能下訂單哦!
這篇文章主要講解了Python中flask框架如何實現查詢數據庫并顯示數據,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。
首先數據庫長這樣
我們想將name和age列顯示到web頁面
上代碼sqlshowweb.py
from flask import Flask from flask import render_template import pymysql app = Flask(__name__) @app.route('/') def index(): conn = pymysql.connect(host='39.106.168.84', user='flask_topvj_net', password='xxxxxxxx', port=3306, db='flask_topvj_net') cur = conn.cursor() sql = "SELECT `name`, `age` FROM `student` WHERE 1" cur.execute(sql) u = cur.fetchall() conn.close() return render_template('index.html',u=u) if __name__ == '__main__': app.debug = True app.run(port=8003)
index.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <table class="table table-bordered"> <tr> <th>name</th> <th>age</th> </tr> {% for i in u %} <tr> <td>{{ i[0] }}</td> <td>{{ i[1] }}</td> </tr> {% endfor %} </table> </body> </html>
運行結果
看完上述內容,是不是對Python中flask框架如何實現查詢數據庫并顯示數據有進一步的了解,如果還想學習更多內容,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。