문제 설명
연결 및 연결 해제 시 Socket.io 2.3.0 타임스탬프 (Socket.io 2.3.0 timestamps on connection and discconect)
nodejs에서 소켓이 연결 및 연결 해제되는 시간을 어떻게 알 수 있나요? io.sockets.on('연결', ...)
참조 솔루션
방법 1:
I'm currently using these three functions for various uses within my project although you can just grab the timestamp using Date() and convert it later on.
function getLocaleDateTimeString() { // date and time
var timestamp = new Date();
const offset = timestamp.getTimezoneOffset() * 60000; // milliseconds
const local = new Date(timestamp.getTime() ‑ offset);
return (local).toISOString().slice(0, 19).replace("T", " ");
}
function getLocaleDateString() { // date only
var timestamp = new Date();
const offset = timestamp.getTimezoneOffset() * 60000; // milliseconds
const local = new Date(timestamp.getTime() ‑ offset);
return (local).toISOString().slice(0, 10);
}
function getLocaleTimeString() { // time only
var timestamp = new Date();
const offset = timestamp.getTimezoneOffset() * 60000; // milliseconds
const local = new Date(timestamp.getTime() ‑ offset);
return (local).toISOString().slice(11, 19);
}