将JS日期时间转换为MySQL日期时间


124

有谁知道如何将JS dateTime转换为MySQL datetime?还有一种方法可以向JS日期时间添加特定的分钟数,然后将其传递给MySQL日期时间?

Answers:


89

尽管JS确实具有足够的基本工具来执行此操作,但它相当笨拙。

/**
 * You first need to create a formatting function to pad numbers to two digits…
 **/
function twoDigits(d) {
    if(0 <= d && d < 10) return "0" + d.toString();
    if(-10 < d && d < 0) return "-0" + (-1*d).toString();
    return d.toString();
}

/**
 * …and then create the method to output the date string as desired.
 * Some people hate using prototypes this way, but if you are going
 * to apply this to more than one Date object, having it as a prototype
 * makes sense.
 **/
Date.prototype.toMysqlFormat = function() {
    return this.getUTCFullYear() + "-" + twoDigits(1 + this.getUTCMonth()) + "-" + twoDigits(this.getUTCDate()) + " " + twoDigits(this.getUTCHours()) + ":" + twoDigits(this.getUTCMinutes()) + ":" + twoDigits(this.getUTCSeconds());
};

如何使用变量调用这样的函数?
fish鱼2013年

1
@Catfish您的意思是指定日期?您使用一个Date对象。new Date().toMysqlFormat()new Date(2014,12,14).toMysqlFormat()或什么的。
kojiro

17
这个答案源于JavaScript古老而笨拙的时代。如果您针对的是现代浏览器,我建议使用Gajus的toISOString方法
kojiro 2013年

320
var date;
date = new Date();
date = date.getUTCFullYear() + '-' +
    ('00' + (date.getUTCMonth()+1)).slice(-2) + '-' +
    ('00' + date.getUTCDate()).slice(-2) + ' ' + 
    ('00' + date.getUTCHours()).slice(-2) + ':' + 
    ('00' + date.getUTCMinutes()).slice(-2) + ':' + 
    ('00' + date.getUTCSeconds()).slice(-2);
console.log(date);

甚至更短:

new Date().toISOString().slice(0, 19).replace('T', ' ');

输出:

2012-06-22 05:40:06

对于更高级的用例,包括控制时区,请考虑使用http://momentjs.com/

require('moment')().format('YYYY-MM-DD HH:mm:ss');

为了替代 ,请考虑https://github.com/taylorhakes/fecha

require('fecha').format('YYYY-MM-DD HH:mm:ss')

您在date.getUTCDate之前有一个额外的左括号,是的,这样更好。
亚当·洛克哈特

28
由于时区,这会带来问题
Coder先生2014年

3
它丢弃了时区设置,如何保持它?
shapeare 2014年

2
结合使用它来照顾时区:stackoverflow.com/questions/11887934/…–
chiliNUT

3
时区oneliner的完整解决方法!!var d = new Date(); d.toISOString().split('T')[0]+' '+d.toTimeString().split(' ')[0];
Paulo Roberto Rosa

78

我认为使用method可以使解决方案不那么笨拙toISOString(),它具有广泛的浏览器兼容性。

因此,您的表情将是单线的:

new Date().toISOString().slice(0, 19).replace('T', ' ');

生成的输出:

“ 2017-06-29 17:54:04”


2
表现出色!new Date(1091040026000).toISOString().slice(0, 19).replace('T', ' ');
约翰·约翰·约翰(John John)

6
很好,这里只有一个问题:笨拙的方法将应用js 之后获取小时,日,月(甚至是年)Date时区offset。而您的则以MySQL DATETIME格式返回底层UTC时间。在大多数情况下,存储UTC可能更好,并且在任何一种情况下,您的数据表都应该在一个字段中提供位置信息。另外,将时间转换为本地时间也很容易:使用... - Date.getTimezoneOffset() * 60 * 1000(NB在适用时也会调整夏令时)。
麦克啮齿动物

14

MySQL的JS时间值

var datetime = new Date().toLocaleString();

要么

const DATE_FORMATER = require( 'dateformat' );
var datetime = DATE_FORMATER( new Date(), "yyyy-mm-dd HH:MM:ss" );

要么

const MOMENT= require( 'moment' );
let datetime = MOMENT().format( 'YYYY-MM-DD  HH:mm:ss.000' );

您可以将其发送给params,它将起作用。


11

对于任意日期字符串,

// Your default date object  
var starttime = new Date();
// Get the iso time (GMT 0 == UTC 0)
var isotime = new Date((new Date(starttime)).toISOString() );
// getTime() is the unix time value, in milliseconds.
// getTimezoneOffset() is UTC time and local time in minutes.
// 60000 = 60*1000 converts getTimezoneOffset() from minutes to milliseconds. 
var fixedtime = new Date(isotime.getTime()-(starttime.getTimezoneOffset()*60000));
// toISOString() is always 24 characters long: YYYY-MM-DDTHH:mm:ss.sssZ.
// .slice(0, 19) removes the last 5 chars, ".sssZ",which is (UTC offset).
// .replace('T', ' ') removes the pad between the date and time.
var formatedMysqlString = fixedtime.toISOString().slice(0, 19).replace('T', ' ');
console.log( formatedMysqlString );

或单线解决方案,

var formatedMysqlString = (new Date ((new Date((new Date(new Date())).toISOString() )).getTime() - ((new Date()).getTimezoneOffset()*60000))).toISOString().slice(0, 19).replace('T', ' ');
console.log( formatedMysqlString );

在mysql中使用Timestamp时,此解决方案也适用于Node.js。

@Gajus Kuizinas的第一个答案似乎是修改了Mozilla的toISOString原型


4

古老的DateJS库具有格式化例程(它覆盖“ .toString()”)。您还可以轻松完成自己的任务,因为“日期”方法为您提供了所需的所有数字。


4

使用@Gajus答案概念的完整解决方法(以维护时区):

var d = new Date(),
    finalDate = d.toISOString().split('T')[0]+' '+d.toTimeString().split(' ')[0];
console.log(finalDate); //2018-09-28 16:19:34 --example output


0

我已经给出了简单的JavaScript日期格式示例,请检查以下代码

var data = new Date($.now()); // without jquery remove this $.now()
console.log(data)// Thu Jun 23 2016 15:48:24 GMT+0530 (IST)

var d = new Date,
    dformat = [d.getFullYear() ,d.getMonth()+1,
               d.getDate()
               ].join('-')+' '+
              [d.getHours(),
               d.getMinutes(),
               d.getSeconds()].join(':');

console.log(dformat) //2016-6-23 15:54:16

使用moment.js

var date = moment().format('YYYY-MM-DD H:mm:ss');

console.log(date) // 2016-06-23 15:59:08

示例请检查https://jsfiddle.net/sjy3vjwm/2/


我刚刚用香草javascript尝试了您的第一个代码,它给了我这个结果:2018-4-20 15:11:23。您没有在数字前加上“ 0”。另外,我不了解momentjs,但是您是否不必将“ HH”放置一个小时以使其填充?也许那就是为什么你被否决?(itwasntme)
亚历克斯

0

将JS Date转换为SQL datetime格式的最简单的正确方法就是这种方法。它可以正确处理时区偏移。

const toSqlDatetime = (inputDate) => {
    const date = new Date(inputDate)
    const dateWithOffest = new Date(date.getTime() - (date.getTimezoneOffset() * 60000))
    return dateWithOffest
        .toISOString()
        .slice(0, 19)
        .replace('T', ' ')
}

toSqlDatetime(new Date()) // 2019-08-07 11:58:57
toSqlDatetime(new Date('2016-6-23 1:54:16')) // 2016-06-23 01:54:16

当心@Paulo Roberto的回答在新的一天开始时会产生错误的结果(我不能发表评论)。例如

var d = new Date('2016-6-23 1:54:16'),
    finalDate = d.toISOString().split('T')[0]+' '+d.toTimeString().split(' ')[0];
console.log(finalDate); // 2016-06-22 01:54:16 

6月22日,而不是23日!


0
var _t = new Date();

如果您只是想使用UTC格式

_t.toLocaleString('indian', { timeZone: 'UTC' }).replace(/(\w+)\/(\w+)\/(\w+), (\w+)/, '$3-$2-$1 $4');

要么

_t.toISOString().slice(0, 19).replace('T', ' ');

如果要在特定时区

_t.toLocaleString('indian', { timeZone: 'asia/kolkata' }).replace(/(\w+)\/(\w+)\/(\w+), (\w+)/, '$3-$2-$1 $4');

0

我使用了很长时间,这对我非常有帮助,可以随便使用

Date.prototype.date=function() {
    return this.getFullYear()+'-'+String(this.getMonth()+1).padStart(2, '0')+'-'+String(this.getDate()).padStart(2, '0')
}

Date.prototype.time=function() {
    return String(this.getHours()).padStart(2, '0')+':'+String(this.getMinutes()).padStart(2, '0')+':'+String(this.getSeconds()).padStart(2, '0')
}

Date.prototype.dateTime=function() {
    return this.getFullYear()+'-'+String(this.getMonth()+1).padStart(2, '0')+'-'+String(this.getDate()).padStart(2, '0')+' '+String(this.getHours()).padStart(2, '0')+':'+String(this.getMinutes()).padStart(2, '0')+':'+String(this.getSeconds()).padStart(2, '0')
}

Date.prototype.addTime=function(time) {
    var time=time.split(":")
    var rd=new Date(this.setHours(this.getHours()+parseInt(time[0])))
    rd=new Date(rd.setMinutes(rd.getMinutes()+parseInt(time[1])))
    return new Date(rd.setSeconds(rd.getSeconds()+parseInt(time[2])))
}

Date.prototype.addDate=function(time) {
    var time=time.split("-")
    var rd=new Date(this.setFullYear(this.getFullYear()+parseInt(time[0])))
    rd=new Date(rd.setMonth(rd.getMonth()+parseInt(time[1])))
    return new Date(rd.setDate(rd.getDate()+parseInt(time[2])))
}

Date.prototype.subDate=function(time) {
    var time=time.split("-")
    var rd=new Date(this.setFullYear(this.getFullYear()-parseInt(time[0])))
    rd=new Date(rd.setMonth(rd.getMonth()-parseInt(time[1])))
    return new Date(rd.setDate(rd.getDate()-parseInt(time[2])))
}

然后:

new Date().date()

它以“ MySQL格式”返回当前日期

增加时间是

new Date().addTime('0:30:0')

这将增加30分钟....等等

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.