Convert JS date time to MySQL datetime
有谁知道如何将JS dateTime转换为MySQL datetime? 还有一种方法可以向JS日期时间添加特定的分钟数,然后将其传递给MySQL日期时间?
1 2 3 4 5 6 7 8 9 | 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); |
甚至更短:
1 | new Date().toISOString().slice(0, 19).replace('T', ' '); |
输出:
1 | 2012-06-22 05:40:06 |
对于更高级的用例,包括控制时区,请考虑使用http://momentjs.com/:
1 | require('moment')().format('YYYY-MM-DD HH:mm:ss'); |
对于momentjs的轻量级替代方案,请考虑https://github.com/taylorhakes/fecha
1 | require('fecha').format('YYYY-MM-DD HH:mm:ss') |
尽管JS确实拥有足够的基本工具来执行此操作,但它相当笨拙。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | /** * 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()); }; |
我认为使用方法
因此,您的表情将是单线的:
1 | new Date().toISOString().slice(0, 19).replace('T', ' '); |
生成的输出:
"2017-06-29 17:54:04"
对于任意日期字符串,
1 2 3 4 5 6 7 8 9 10 11 12 13 | // 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 ); |
或单线解决方案,
1 2 | 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原型
MySQL的JS时间值
1 | var datetime = new Date().toLocaleString(); |
要么
1 2 | const DATE_FORMATER = require( 'dateformat' ); var datetime = DATE_FORMATER( new Date(),"yyyy-mm-dd HH:MM:ss" ); |
要么
1 2 | const MOMENT= require( 'moment' ); let datetime = MOMENT().format( 'YYYY-MM-DD HH:mm:ss.000' ); |
您可以将其发送给params,它将起作用。
使用@Gajus答案概念的完整解决方法(以维护时区):
1 2 3 | 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 |
古老的DateJS库具有格式化例程(它覆盖" .toString()")。您还可以轻松完成自己的任务,因为"日期"方法为您提供了所需的所有数字。
1 | var _t = new Date(); |
如果您只是想使用UTC格式
1 | _t.toLocaleString('indian', { timeZone: 'UTC' }).replace(/(\w+)\/(\w+)\/(\w+), (\w+)/, '$3-$2-$1 $4'); |
要么
1 | _t.toISOString().slice(0, 19).replace('T', ' '); |
如果要在特定时区
1 | _t.toLocaleString('indian', { timeZone: 'asia/kolkata' }).replace(/(\w+)\/(\w+)\/(\w+), (\w+)/, '$3-$2-$1 $4'); |
将JS日期转换为SQL datetime格式的最简单的正确方法就是这种方法。它可以正确处理时区偏移。
1 2 3 4 5 6 7 8 9 10 11 | 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的回答在新的一天开始时会产生错误的结果(我不能发表评论)。例如:
1 2 3 | 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日!
我已经给出了简单的JavaScript日期格式示例,请检查以下代码
1 2 3 4 5 6 7 8 9 10 11 12 | 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
1 2 3 | var date = moment().format('YYYY-MM-DD H:mm:ss'); console.log(date) // 2016-06-23 15:59:08 |
示例请检查https://jsfiddle.net/sjy3vjwm/2/