Error

[Error][js] moment.js:1 Deprecation warning: value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), which is not reliable across all browsers and versions. Non RFC2822/ISO date formats are discouraged and

오선지♬ 2024. 10. 14. 20:26
728x90
반응형

Moment.js의 이 사용 중단 경고는 RFC2822 또는 ISO 8601 형식이 아닌 날짜 형식을 전달하고 있음을 나타냅니다

 

 

해결책:

1. RFC2822 또는 ISO 8601 형식을 사용하세요.

ISO 8601 형식 : YYYY-MM-DDTHH:mm:ssZ또는YYYY-MM-DD

moment("2024-10-14T12:00:00Z");
moment("2024-10-14");

RFC2822 형식 :ddd, DD MMM YYYY HH:mm:ss ZZ

moment("Mon, 14 Oct 2024 12:00:00 +0000");

 

2.기존 날짜 형식을 변환합니다 .

moment("10/14/2024", "MM/DD/YYYY");
728x90
반응형