ERROR TypeError: moment_1.default is not a function
위 같은 에러가 뜬다.
분명히, 인터넷에 있는 Moment 사용법 똑같이 했는데...
그리고 나는 moment를 사용해서 현재 시간을 가져와야하는데...
대부분 아래처럼 import하고 moment() 하면 현재 시간을 불러온다는데...
import moment from 'moment';
moment();
위처럼하면... TypeError가 뜬다...
ERROR TypeError: moment_1.default is not a function
아래처럼 moment-timezone를 불러와야 한다.
import * as moment from 'moment-timezone';
위처럼 불러오고, moment() 하면 현재 시간을 불러온다.
ㅠ
'컴퓨터 > Angular' 카테고리의 다른 글
node에서 오라클 연결하기(nestjs) (0) | 2021.12.29 |
---|---|
GCP에서 The request URL 에러 (0) | 2021.04.18 |
Postman JSON 전송시, Object ,Array 보내기 (Unexpected token o in JSON at position 1 에러) (0) | 2021.02.02 |
포스트맨 400 에러(Postman) (0) | 2021.01.22 |
몽구스 Mongoose Schema 사용시 컬렉션명에 s붙는거 (0) | 2021.01.20 |