moment 포맷
2020. 4. 11. 03:52ㆍNode.js, Express
데이터를 Date타입으로 변경해 줄때 moment 함수를
moment(A).format("YYYY-MM-DD HH:mm:ss"); 이런식으로
썼는데 계속해서
Deprecation warning: value provided is not in a recognized ISO format. moment construction falls back to js Date(), which is not reliable across all browsers and versions. Non ISO date formats are discouraged and will be removed in an upcoming major release. Please refer to http://momentjs.com/guides/#/warnings/js-date/ for more info.
이런 오류가 계속 떠서 구글링을 해보니
moment.utc(A,'YYYY-MM-DD HH:mm:ss'); 포맷을 이런식으로 해야 한다고 한다.
moment.js는 개발이 중단됬으니 dayjs로 바꿔서 사용하자
crispypotato.tistory.com/88
728x90
반응형
'Node.js, Express' 카테고리의 다른 글
X-Powered-By헤더 차단 Helmet사용, Express (0) | 2020.10.30 |
---|---|
우분투에서 node 12 설치 (0) | 2020.10.25 |
오류 PayloadTooLargeError: request entity too large (0) | 2020.10.23 |
node-schedule 사용법, 자동화, 스케줄 (0) | 2020.09.23 |
Crawling 크롤링 - 네이버 영화순위 node.js (3) | 2020.01.16 |