我目前得到了时间戳差异,这种差异被理解为分钟值的时间戳。
vm.horario_firebase = data.val() + Date.now();
let tiempo_faltante = ultima_fecha_vecimiento-vm.horario_firebase ; //getting the timestamp difference
console.log("THIS IS THE TIME THAT MISSES THE CHRONOMETER, TIMESTAMP");
console.log(tiempo_faltante);
let minutos = new Date(tiempo_faltante).getMinutes()*60/60; //This way I get the timestamp value in minutes
console.log("MINUTES ENTERED");
console.log(minutos); // 9 (example value, returns an integer)
我要详细说明的是,在时间戳的差异中,它的减法是几秒钟,然后在变量minutes
中显示时,它整体显示了它的值,正如我可以用它的小数表示的那样例如9.5
相当于9分钟多秒的时间
非常感谢。