收藏
回答

发布能力更新时间是什么单位

这篇图文消息素材的最后更新时间,拿到的是一个long类型1734671793,解析出来怎么是1970年1月21日

回答关注问题邀请回答
收藏

3 个回答

  • Mr.Zhao
    Mr.Zhao
    2天前

    不是个啥啊

    2天前
    有用
    回复
  • 墨笔浅短
    墨笔浅短
    2天前

    一般结尾是000是毫秒,结尾加“000”trytry

    2天前
    有用
    回复 2
  • 正好时光
    正好时光
    2天前

    你这是秒,解析按照毫秒了吧

    2天前
    有用
    回复 3
    • 明天会更好
      明天会更好
      2天前
      不是,如果乘以1000,换成毫秒就更不对,我看接口返回给我的就是1734671793
      2天前
      回复
    • 正好时光
      正好时光
      2天前回复明天会更好
      用在线时间戳是没问题的,秒解析
      2天前
      回复
    • 正好时光
      正好时光
      2天前
      const timestamp = 1734671793;
          const date = new Date(timestamp * 1000);
          const year = date.getFullYear();
          const month = date.getMonth() + 1;
          const day = date.getDate();
          const hours = date.getHours();
          const minutes = date.getMinutes();
          const seconds = date.getSeconds();
          const formattedDate = `${year}年${month}月${day}日 ${hours}时${minutes}分${seconds}秒`;
          console.log(formattedDate);
      2天前
      回复
登录 后发表内容