Sequelize reads datetime in UTC only(Sequelize 仅以 UTC 格式读取日期时间)
问题描述
我已将 timezone 选项设置为我的时区(Europe/Zagreb 并且我也尝试使用 +02:00),并且时间会按原样保存,但是,当从数据库中读取时间时,Sequelize 会将其转换为 UTC.我也尝试过不同的时区,每个时区都正确保存,但从数据库读取时总是转换为 UTC.
I have set the timezone option to my timezone (Europe/Zagreb and I've tried with +02:00 too), and the time is saved as it should be, however, when reading the time from the database, Sequelize converts it to UTC. I have tried different timezones too, each is saved correctly, but always converted to UTC when read from database.
是我做错了什么还是这是一个已知问题,是否有任何解决方法?
Am I doing something wrong or is this a known issue and are there any workarounds?
我创建了一个新的连接:
I create a new connection with:
sequelize = new Sequelize(config.database, config.username, config.password, config);
我的配置看起来像这样:
and my configuration looks something like this:
"development": {
"username": "root",
"password": "root",
"database": "db",
"host": "localhost",
"dialect": "mysql",
"timezone": "Europe/Zagreb"
}
推荐答案
你可以试试这个代码,我遇到了同样的问题,这对我有用.
You can Try This code, I had the same problem and this worked for me.
const sequelize = new Sequelize(mysql.database, mysql.user, mysql.password, {
host: mysql.host,
port:3306,
dialect:'mysql',
define: {
underscored: true,
freezeTableName: true, //use singular table name
timestamps: false, // I do not want timestamp fields by default
},
dialectOptions: {
useUTC: false, //for reading from database
dateStrings: true,
typeCast: function (field, next) { // for reading from database
if (field.type === 'DATETIME') {
return field.string()
}
return next()
},
},
timezone: '+01:00'
});
这篇关于Sequelize 仅以 UTC 格式读取日期时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Sequelize 仅以 UTC 格式读取日期时间
基础教程推荐
- 如何使用 mysql.connector 禁用查询缓存 2022-01-01
- SQL 效率:WHERE IN 子查询 vs. JOIN 然后 GROUP 2021-01-01
- 无法解决整理冲突 2021-01-01
- SSMS 中的权限问题:“对象 'extended_properties'、数据库 'mssqlsystem_resource'、... 错误 229)上的 SELECT 权限被拒绝" 2022-01-01
- 将 SQL Server DateTime 列迁移到 DateTimeOffset 2021-01-01
- SQL Server 实例在登录协商期间返回无效或不受支持的协议版本 2021-01-01
- SQL:使用来自具有相同列名的两个表中的数据... 2021-01-01
- 是否可以执行按位分组功能? 2021-01-01
- 需要 MySQL 5.1 中的抽象触发器来更新审计日志 2021-01-01
- 在 SQL 中连接多个表 2021-01-01
