tsxcw / mtab

Mtab书签导航程序 - 免费无广告的浏览器书签助手,多端同步、美观易用的在 线导航和书签工具,自主研发免费使用,帮助您高效管理 网页和应用,提升在线体验。
https://mtab.cc
Other
374 stars 46 forks source link

搜索界面图标中文乱码 #14

Open xuzevin opened 3 months ago

xuzevin commented 3 months ago

用 docker 安装的 mysql 是5.7 搜索界面图标显示乱码 image

管理界面里热门标签也是中文乱码 image

应用的图标能正常显示中文 image

tsxcw commented 3 months ago

您好,前台是应为默认数据在文件里面所以正常,后台是因为都是在数据库,可能您的数据库字符编码设置的不正确,非uft8的,一般这种情况出现在mysql5.7的版本中,在mysql8.0或者使用宝塔在安装的mysql是不会出现这种问题,您可以试着修改一下数据库的字符编码,然后重新安装试一下。

xjpz commented 4 weeks ago

install.sql下部分建表语句没指定字符集,比如plugins_todo_folder表, create table if not exists plugins_todo_folder ( id int auto_increment, primary key (id) ) comment 'todo分类';

而有一些表有指定字符集 ,

create table if not exists setting ( keysvarchar(200) not null primary key ) character set utf8mb4 collate utf8mb4_general_ci;