1

我正在尝试按键解析对象并将其中一个字段从秒修改为小时+分钟。

tableData[key].forEach(weekday => {
        mappedObject[weekday.day] = weekday.spent;
      });

我已经导入了时刻

import * as moment from 'moment';
import { Moment } from 'moment';

我试过了

tableData[key].forEach(weekday => {
        mappedObject[weekday.day] = moment.duration(weekday.spent,"seconds").format("h [hrs], m [min]");
      });

但是我得到“持续时间”类型上不存在属性“格式”。

我该怎么做才能让它工作?

忘了提:我不允许安装其他外部依赖项。

4

1 回答 1

0

尝试以下

let duration = moment.duration(500, "seconds");
alert(`${duration.hours()} hours ${duration.minutes()} minutes `);
于 2019-05-21T08:14:24.013 回答