如何在 Javascript 中格式化时间戳以显示相关时区的正确时间

我在 JavaScript 中处理时间有问题。我在 firebase 的文档中有一个时间戳,我有一个应该发送通知的云函数。我想发送带有正确格式的时间戳的通知作为英国当前时区(当前为 BST 或 UTC+1 或 GMT+1)。下面是我的代码......


exports.sendNotificationNewRota = functions.firestore

  .document('rota/{attendanceId}')

  .onCreate(async snapshot => {

    const transaction = snapshot.data();


    var dateIn = transaction.timeIn.toDate();


    let timeIn = dateIn.toLocaleTimeString( {

      timezone: 'Europe/London',

      timeZoneName: 'long',

      hour: '2-digit',

      minute:'2-digit'});


    console.log(timeIn);

此代码的输出为我提供了 UTC 时间。当 BST 完成时这可能没问题,但不是现在。有没有办法正确处理时间?


一只甜甜圈
浏览 141回答 2
2回答

慕哥9229398

天哪,我在这上面浪费了太多时间,但最终我意识到这是我代码中的错字。任何有同样问题的人一定要使用timeZone而不是timezone

SMILET

注意函数签名Date.prototype.toLocaleTimeString()dateObj.toLocaleTimeString([locales[, options]])详情在这里您有效地将配置传递给locales参数,为了使代码正常工作,您需要添加一个空的第一个参数。或者,您也可以指定它,'en-UK'例如:exports.sendNotificationNewRota = functions.firestore&nbsp; .document('rota/{attendanceId}')&nbsp; .onCreate(async snapshot => {&nbsp; &nbsp; const transaction = snapshot.data();&nbsp; &nbsp; var dateIn = transaction.timeIn.toDate();&nbsp; &nbsp; let timeIn = dateIn.toLocaleTimeString([],{ //<-- fix here&nbsp; &nbsp; &nbsp; timezone: 'Europe/London',&nbsp; &nbsp; &nbsp; timeZoneName: 'long',&nbsp; &nbsp; &nbsp; hour: '2-digit',&nbsp; &nbsp; &nbsp; minute:'2-digit'});&nbsp; &nbsp; console.log(timeIn);
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript