Mysql
 sql >> Database >  >> RDS >> Mysql

NodeJS ha risposto che il fuso orario di MySQL è diverso quando recupero direttamente da MySQL

Ho aggiunto il fuso orario in index.js durante l'inizializzazione della connessione mysql

var db_config = {
  host     : 'localhost',
  user     : 'xxx',
  password : '',
  database : 'xxx',
  timezone: 'utc'  //<-here this line was missing
};