Quelqu'un sait-il comment convertir JS dateTime en datetime MySQL ? Existe-t-il également un moyen d'ajouter un nombre spécifique de minutes à JS datetime, puis de le passer à MySQL datetime ?
Réponses
Trop de publicités?Je pense que la solution peut être moins encombrante en utilisant la méthode toISOString()
, elle a une large compatibilité avec le navigateur.
Donc votre expression sera un one-liner :
new Date().toISOString().slice(0, 19).replace('T', ' ');
La sortie générée :
"29/06/2017 17:54:04"
Bien que JS possède suffisamment d'outils de base pour le faire, c'est assez encombrant.
/**
* 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());
};
Valeur de temps JS pour MySQL
var datetime = new Date().toLocaleString();
OU
const DATE_FORMATER = require( 'dateformat' );
var datetime = DATE_FORMATER( new Date(), "yyyy-mm-dd HH:MM:ss" );
OU
const MOMENT= require( 'moment' );
let datetime = MOMENT().format( 'YYYY-MM-DD HH:mm:ss.000' );
vous pouvez l'envoyer en params sa volonté fonctionne.
Pour une chaîne de date arbitraire,
// 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 );
Ou une solution unifilaire,
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 );
Cette solution fonctionne également pour Node.js lors de l'utilisation de Timestamp dans mysql.
La première réponse de @Gajus Kuizinas semble modifier le prototype toISOString de mozilla