without haste but without rest

자바스크립트 UTC to KST 변환 본문

etc.

자바스크립트 UTC to KST 변환

JinungKim 2021. 5. 7. 15:24

momentjs.com/

 

Moment.js | Home

Format Dates moment().format('MMMM Do YYYY, h:mm:ss a'); moment().format('dddd'); moment().format("MMM Do YY"); moment().format('YYYY [escaped] YYYY'); moment().format(); Relative Time moment("20111031", "YYYYMMDD").fromNow(); moment("20120620", "YYYYMMDD"

momentjs.com


1. moment.js 다운로드 후 프로젝트 폴더에 저장

2. html 파일에 import

3. 아래 함수로 utc 시간 kst로 변환

 

    utc 시간 moment 클래스 파라미터로 주어서 객체 생성, 해당 객체의 key인 '_d' 는 한국시간으로 변환된 값을 가지고 있음

function TZ(utc) {
    const kst = moment(utc, "YYYY-MM-DDTHH:mm:ssZ");
    const result = kst["_d"];
    return result
}

 

 

4. 리턴한 result는 date 객체 이므로 

 

result.getFullYear()

result.getMonth()+1

result.getDate()

result.getHours()

result.getMinutes()

 

메서드로 시간 가져와서 활용

 

'etc.' 카테고리의 다른 글

Codility Lesson4 MaxCounter 파이썬 풀이  (1) 2021.10.08
ubuntu 20.04 - konlpy 설치 이슈 및 트러블슈팅  (0) 2021.09.30
konlpy m1 칩 이슈  (0) 2021.09.23
크론탭 튜토리얼  (0) 2021.05.17
XML 컨셉  (0) 2020.10.28
Comments