moment.js 에서 timezone 을 적용한 date 객체 다루는 샘플

By | 3월 4, 2022

환경

소스


import moment from 'moment-timezone'; // tz 를 사용하려면 이걸로 import 해야 함.

// 기본 timezone 지정 
const DEFAULT_TIMEZONE = 'Asia/Seoul';
// const DEFAULT_TIMEZONE = 'America/New_York';

// 날짜 기간 검색시 기본 기간
export const DEFAULT_SEARCH_PERIOD_DAYS = 7;

const cur = moment.tz(new Date(), DEFAULT_TIMEZONE); 
const start = cur.clone().add((-1 * DEFAULT_SEARCH_PERIOD_DAYS), 'days'); // 조회 시작일
const end = cur.clone(); // 조회 종료일
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments