我正在尝试通过键解析对象,并将其中一个字段从几秒钟到小时 分钟进行修改。
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]");
});
但我获得属性'格式'不存在于类型的"持续时间"。
我该怎么做才能使它起作用?
忘了提及:我不允许安装其他外部依赖。
尝试以下
let duration = moment.duration(500, "seconds");
alert(`${duration.hours()} hours ${duration.minutes()} minutes `);