gpt4 book ai didi

node.js - 在 node-postgres 模块上显示时区的日期类型

转载 作者:行者123 更新时间:2023-12-04 11:30:32 25 4
gpt4 key购买 nike

我已经在 postgres 数据库中以日期格式存储了输入数据,但是当我在浏览器中显示日期时,它显示了带时区的日期并将其从 utc 转换。例如,我将日期存储在 2020-07-16 中格式。但是当我显示日期时它变成 2020-07-15T18:00:00.000Z .我试过使用 select mydate::DATE from table仅获取日期,但仍显示带时区的日期。我在我的 Node 应用程序中使用 node-postgres 模块。我怀疑这是 node-postgres 模块上的一些配置?来自他们的 doc :

node-postgres converts DATE and TIMESTAMP columns into the local timeof the node process set at process.env.TZ


他们有什么办法可以将其配置为仅解析日期吗?如果我这样查询 SELECT TO_CHAR(mydate :: DATE, 'yyyy-mm-dd') from table我得到 2020-07-16但这只是为了约会而做的很多工作

最佳答案

您可以制作自己的日期和时间类型解析器:

const pg = require('pg');
pg.types.setTypeParser(1114, function(stringValue) {
return stringValue; //1114 for time without timezone type
});

pg.types.setTypeParser(1082, function(stringValue) {
return stringValue; //1082 for date type
});

类型 id 可以在文件中找到:node_modules/pg-types/lib/textParsers.js

关于node.js - 在 node-postgres 模块上显示时区的日期类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62923107/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com