我想将服务器正常运行时间转换为days:hours:minutes:second。我使用以下代码:

var os = require('os');
var uptime = os.uptime();
console.log(convertMS(uptime));


并使用此代码将时间转换为天数:

function convertMS(ms) {
  var d, h, m, s;
  s = Math.floor(ms / 1000);
  m = Math.floor(s / 60);
  s = s % 60;
  h = Math.floor(m / 60);
  m = m % 60;
  d = Math.floor(h / 24);
  h = h % 24;
  return { d: d, h: h, m: m, s: s };
};


但是uptime变量返回一个像这样的数字16051.8370378。这是不正确的。我该怎么办?

最佳答案

特别感谢@jcaron
在版本v6.9.4中,正常运行时间返回seconds。我犯了一个错误。
v6.9.4 Documentation

关于javascript - Nodejs os.uptime()返回错误的正常运行时间值(毫秒),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41908599/

10-09 21:00