从momentJs中的asMinutes方法输出格式

时间:2015-09-18 06:26:27

标签: momentjs

此操作

source

返回moment.duration(3611635).asMinutes()

我可以使用momentJs lib格式化以获得四舍五入或更少的小数位吗?

1 个答案:

答案 0 :(得分:0)

修改 如果你想使用片刻,你必须先转换为小时,然后转换为分钟:

moment.duration(3917000).hours() * 60 + moment.duration(3917000).minutes()

原帖:

您可以使用round

的Javascript功能
Math.round(x)

如果您想要始终向下舍入,可以使用floor

Math.floor(x)

如果您想要总是向上舍入,可以使用ceil

Math.ceil(x)