我正在使用 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>';