这是我在 flask 应用程序中的代码
from flask import Flask, render_template
from flask_mysqldb import MySQL
import MySQLdb.cursors
app = Flask(__name__)
app.config['MYSQL_HOST'] = 'localhost'
app.config['MYSQL_USER'] = 'root'
app.config['MYSQL_PASWPRD'] = ''
app.config['MYSQL_DB'] = 'customer'
mysql = MySQL(app)
@app.route('/')
def index():
cur = mysql.connection.cursor()
cur.execute("SELECT City FROM customer")
data = cur.fetchall()
cur.close()
return render_template ("index.html", name=data)
if __name__ == "__main__":
app.run(debug=True)
它返回这个
你好,世界(('dhk',),('khl',),('raj',),('com',))
但我想表现得像这个dhk,khl,。。。。。。
我怎样才能得到这个并在html模板中使用它
更新
这是index.html文件
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flask App</title>
</head>
<body>
<head>Hello World</head>
<h1>{{ name }}</h1>
</body>
</html>
1条答案
按热度按时间eqzww0vc1#
你能试试这个吗?我认为需要循环传递给模板的值: