问题
在初始化小程序数据库时遇到了Client does not support authentication protocol requested by server ; consider upgrading MySQL client错误

解决方案
use mysql;
alter user ‘root’@’localhost’ identified with mysql_native_password by ‘你的密码,若无密码为空’;
flush privileges;

问题得以解决:
