我在网站中使用moment.js,我必须在不同时期之间显示持续时间。我得到毫秒持续时间,除以3600 * 1000后,我得到一个十进制小时格式。我试图使用moment.js
中的人性化方法,但还不够准确。
这是库的示例行为
moment.duration(0.5, 'hours').humanize(); // returns '30 minutes' OK
moment.duration(0.1, 'hours').humanize(); // returns '6 minutes' OK
moment.duration(0.8, 'hours').humanize(); // returns 'an hour' BAD
moment.duration(0.7, 'hours').humanize(); // returns '42 minutes' OK
moment.duration(0.72, 'hours').humanize(); // returns '43 minutes' OK
moment.duration(0.73, 'hours').humanize(); // returns '44 minutes' OK
moment.duration(0.74, 'hours').humanize(); // returns '44 minutes' OK
moment.duration(0.75, 'hours').humanize(); // returns 'an hour' BAD
正在发生什么以及如何解决它的方式?
非常感谢。
答案 0 :(得分:3)
分钟的默认Relative Time Threshold为45分钟。
duration.humanize
具有阈值,用于定义单位何时被视为分钟,一小时等等。例如,默认情况下,超过45秒被视为一分钟,超过22小时被视为一天,依此类推。要更改这些截止值,请使用moment.relativeTimeThreshold(unit, limit)
,其中单位是ss
,s
,m
,h
,d
,M
之一
如果您想要更高的截止点,请执行以下操作设置不同的值:
moment.relativeTimeThreshold('m', 60);
moment.relativeTimeThreshold('m', 60);
console.log([
moment.duration(0.5, 'hours').humanize(),
moment.duration(0.1, 'hours').humanize(),
moment.duration(0.8, 'hours').humanize(),
moment.duration(0.7, 'hours').humanize(),
moment.duration(0.72, 'hours').humanize(),
moment.duration(0.73, 'hours').humanize(),
moment.duration(0.74, 'hours').humanize(),
moment.duration(0.75, 'hours').humanize()
]);
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.19.1/moment.min.js"></script>