【问题标题】:React js Moment Timezone has no data for ISTReact js Moment Timezone 没有 IST 的数据
【发布时间】:2021-01-22 06:31:03
【问题描述】:

我在我的 react js 项目中使用了时刻时区。日期时间转换显示正确,但 Moment Timezone has no data for IST 控制台中显示错误

import moment from "moment-timezone";

export function utcToDate() {
const zone_name = moment.tz.guess();
const timezone = moment.tz(zone_name).zoneName();
return moment(1607954125191).tz(timezone).format("MMM DD YYYY, hh:mm A"); 
}

【问题讨论】:

    标签: javascript reactjs console moment-timezone


    【解决方案1】:

    使用 zone_name 代替时区

    return moment(date).tz(zone_name).format("MMM DD YYYY, hh:mm A");
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2016-01-20
      • 1970-01-01
      • 2018-02-10
      • 2014-08-15
      • 2018-12-18
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多