연결 및 연결 해제 시 Socket.io 2.3.0 타임스탬프 (Socket.io 2.3.0 timestamps on connection and discconect)


문제 설명

연결 및 연결 해제 시 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);
}

(by user_idWLGfx)

참조 문서

  1. Socket.io 2.3.0 timestamps on connection and discconect (CC BY‑SA 2.5/3.0/4.0)

#timestamp #Socket.io #node.js






관련 질문

Java의 각 줄에 타임 스탬프를 추가하는 방법은 무엇입니까? (How to add a time stamp to each line in java?)

Halo 5 API 알 수 없는 타임스탬프 (Halo 5 Api Unknown TimeStamp)

InfluxDB 데이터 입력 파일 타임스탬프 형식 (InfluxDB data input file timestamp format)

날짜 열을 타임스탬프 열과 비교하는 MYSQL (MYSQL comparing date columns with timestamp columns)

PostgreSQL DB의 타임스탬프를 사용자 시간대 시간으로 어떻게 변환합니까? (How do I convert the time stamps from a PostgreSQL DB into user-time-zone times?)

조건부로 timedate 인덱스 편집, 데이터 프레임의 이전 레코드 확인 (Edit timedate index conditionally, checking previous record in a dataframe)

열 정의에서 TIMESTAMP 뒤의 값은 무엇을 의미합니까? (What does the value after TIMESTAMP in a column definition mean?)

JS에서 반복 타임 스탬프를 얻으려면 어떻게해야합니까? (How can I get recurring timestamp in JS?)

robocopy 명령으로 타임 스탬프를 사용하여 날짜와 시간으로 폴더를 만드는 방법 (How to create folder with date and time using timestamp with robocopy command)

연결 및 연결 해제 시 Socket.io 2.3.0 타임스탬프 (Socket.io 2.3.0 timestamps on connection and discconect)

Db2: 동일한 행의 값이 설정된 타임스탬프를 저장하는 열을 만듭니다. (Db2: Create a Column that stores the timestamp a value in the same row is set)

하루의 정수 값이 두 번째 이벤트 항목 배열의 타임스탬프와 일치해야 하는 날짜 값 배열에서 항목을 필터링하는 방법은 무엇입니까? (How to filter items from an array of day values where a day's integer value has to match any timestamp from a second array of event items?)







코멘트