After js got the server time, let him increase his Synchronize.

the time shown on the check-in function page is the time obtained from the server

then let this time go one second at a time

because this time is requested, not the local new Date ()

how to make this time look like new Date

clipboard.png

setTime is supposed to be used this way, but new Date () is still local time

May.15,2021

(new Date).setTime()

const st = new Date(serverTime).getTime()
console.log(new Date(st))
Menu