时间:2021-07-01 10:21:17 帮助过:125人阅读
https://blog.csdn.net/chanlingmai5374/article/details/93190983
数据库里存了 datetime
。但 Node
查询出来是这样子的:
2019-05-14T21:40:59.000Z
这是 Mysql时区
与 Node时区
不一致导致的。
解决方法:配置Node数据库连接。
加上 timezone
这一行:
client: {
host: ‘***.***.***.***‘,
port: ‘****‘,
user: ‘****‘,
timezone: "08:00"
}
Node 查询,得到结果:
2019-05-15 05:40:59
返回正常。收工!
使用node查询数据库(mysql)时,日期格式不对的问题。
标签:host 数据 href 解决办法 time 这一 timezone blog http