gpt4 book ai didi

mysql - node.JS 中的日期格式

转载 作者:IT老高 更新时间:2023-10-28 23:00:29 30 4
gpt4 key购买 nike

我正在使用 mysql 数据库,因为我有一个名为 request_date 的字段。该字段的类型为时间戳,该字段中存储的数据格式为2012-05-16 14:59:18。但是当我通过 Node.JS 检索相同的数据时,数据在浏览器中显示为

Fri Jun 08 2012 15:16:50 GMT+0530 (India Standard Time)

为什么会发生这种格式变化?

我已经写了这个查询:

SELECT
biz_registration.reqid,biz_registration.request_date,biz_registration.req_status,biz_registration.annual_cost,biz_registration.rid,biz_contact.first_name,biz_contact.last_name
FROM biz_registration
INNER JOIN biz_contact ON biz_registration.reqid=biz_contact.reqid
ORDER BY biz_registration.request_date
DESC limit '+start+','+mlimit+''

我使用的html代码是,

options +='<div class="column" style="background-color: #E1E1E1;width:         100px;">'+result.reqid+'</div>';
options +='<div class="column" style="background-color: #E1E1E1;width: 160px;">'+result.request_date+'</div>';

最佳答案

我遇到了同样的问题,这解决了我的问题:

您需要“强制”您的 mysql 连接以立即对其进行格式化,将其添加到您的配置(连接详细信息)中:

host: 'localhost',
user: 'root'
// ....
dateStrings: 'date'

请注意,在许多情况下

dateStrings: true

而不是'date'

似乎是需要的解决方案。

关于mysql - node.JS 中的日期格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11187961/

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