如果在SUPERSET中出现了中文乱码问题,可以尝试以下解决方法:
检查数据库字符集:确保数据库字符集和SUPERSET字符集一致,如UTF-8。
修改SUPERSET配置文件:在superset_config.py中添加以下代码:
import os
basedir = os.path.abspath(os.path.dirname(__file__))
SQLALCHEMY_DATABASE_URI = 'mysql+pymysql://username:password@localhost:3306/dbname?charset=utf8'
其中,username、password、localhost、dbname需要根据实际情况修改。
charset utf-8;
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
如果以上方法均无效,可以尝试更新SUPERSET版本或联系SUPERSET开发者进行咨询。