欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

解决Flask读取mysql数据库的中文乱码问题

程序员文章站 2023-11-20 23:56:46
# -*- coding: utf-8 -*-from flask import Flask, render_templateimport pymysqlfrom sqlalchemy import create_engineapp = Flask(__name__)# 解决中文乱码的问题,将json数据内的中文正常显示app.config['JSON_AS_ASCII'] = False# 开启debug模式app.config['DEBUG'] = True@app.route(...
# -*- coding: utf-8 -*-
from flask import Flask, render_template
import pymysql
from sqlalchemy import create_engine

app = Flask(__name__)

# 解决中文乱码的问题,将json数据内的中文正常显示
app.config['JSON_AS_ASCII'] = False
# 开启debug模式
app.config['DEBUG'] = True

@app.route('/gender', methods=['GET', 'POST'])
def gender():
    conn = create_engine("mysql+pymysql://root:123456@localhost/flask")
    cur = conn.connect()    # 数据引擎
    result = cur.execute("select * from genderdf")
    gender = []
    data = []
    for item in result:
        gender.append(item[0])
        data.append(item[1])
    return {'gender': gender, 'data': data}

if __name__ == "__main__":
    app.run(debug=True)

Flask能运行成功,但中文显示的是乱码

如图所示
解决Flask读取mysql数据库的中文乱码问题
解决方法:

在相对应的python中加入

# 解决中文乱码的问题,将json数据内的中文正常显示
app.config['JSON_AS_ASCII'] = False
# 开启debug模式
app.config['DEBUG'] = True

再运行就可以得到中文显示
解决Flask读取mysql数据库的中文乱码问题

本文地址:https://blog.csdn.net/SartinL/article/details/107082481