标签: momentjs
此操作
source
返回moment.duration(3611635).asMinutes()
moment.duration(3611635).asMinutes()
我可以使用momentJs lib格式化以获得四舍五入或更少的小数位吗?
答案 0 :(得分:0)
修改强> 如果你想使用片刻,你必须先转换为小时,然后转换为分钟:
moment.duration(3917000).hours() * 60 + moment.duration(3917000).minutes()
原帖:
您可以使用round
Math.round(x)
如果您想要始终向下舍入,可以使用floor
Math.floor(x)
如果您想要总是向上舍入,可以使用ceil
Math.ceil(x)