Mysql
 sql >> Datenbank >  >> RDS >> Mysql

NodeJS antwortete, dass die MySQL-Zeitzone anders ist, wenn ich direkt von MySQL abrufe

Ich habe die Zeitzone in index.js hinzugefügt, als ich die MySQL-Verbindung initialisierte

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