누구든지 JS dateTime을 MySQL datetime으로 변환하는 방법을 알고 있습니까? 또한 JS datetime에 특정 시간 (분)을 추가 한 다음 MySQL datetime에 전달하는 방법이 있습니까?
답변
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());
};
답변
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');
가벼운 대안을 위해 momentjs, https://github.com/taylorhakes/fecha 고려
require('fecha').format('YYYY-MM-DD HH:mm:ss')
답변
방법을 사용하면 솔루션이 덜 투박해질 수 있다고 생각합니다. toISOString()
하며 광범위한 브라우저 호환성이 있습니다.
따라서 표현은 한 줄로 표시됩니다.
new Date().toISOString().slice(0, 19).replace('T', ' ');
생성 된 출력 :
‘2017-06-29 17:54:04’
답변
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로 보낼 수 있습니다.
답변
임의의 날짜 문자열의 경우
// 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 프로토 타입을 수정하는 것 같습니다.
답변
오래된 DateJS 라이브러리에는 형식화 루틴이 있습니다 ( “.toString ()”을 재정의 함). “Date”방법이 필요한 모든 숫자를 제공하기 때문에 쉽게 직접 할 수 있습니다.
답변
@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