如何在PostgreSQL中保存JS Date.now()? [英] How to save JS Date.now() in PostgreSQL?

查看:111
本文介绍了如何在PostgreSQL中保存JS Date.now()?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我尝试使用PostgreSQL timestamp 数据类型,但是会引发错误

I tried to use PostgreSQL timestamp datatype, but it throws an error

ERROR:  date/time field value out of range: "1489849402536"

架构

create table times (
  time   timestamp    not null,
);

JS代码

`insert into times(time) values (${Date.now()})`

PS另一个选择是使用 bigint ,但这似乎是一种矫kill过正。

P.S. another option is to use bigint but it seems like an overkill.

推荐答案

使用 to_timestamp() postgres函数

Use the to_timestamp() postgres function:

`insert into times (time) values (to_timestamp(${Date.now()} / 1000.0))`

这篇关于如何在PostgreSQL中保存JS Date.now()?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆