모바일에서 invalid date

TL;DR

date는 string X, number O

본론

배경

데스크탑 웹에서는 잘 동작하는 date가 모바일에서는 Invaild date 오류를 뿜음
해결 과정

구글링을 해보니 이런 게 있었음 RangeError: invalid date
오늘의 연, 월, 일을 가져오는 함수에서 yyyy.mm.dd 형식의 string을 date로 만들어주는 게 문제가 됨.

const getYearMonthD…


This content originally appeared on DEV Community and was authored by wes5510

TL;DR

  • date는 string X, number O

본론

배경

데스크탑 웹에서는 잘 동작하는 date가 모바일에서는 Invaild date 오류를 뿜음
해결 과정

구글링을 해보니 이런 게 있었음 RangeError: invalid date
오늘의 연, 월, 일을 가져오는 함수에서 yyyy.mm.dd 형식의 string을 date로 만들어주는 게 문제가 됨.

const getYearMonthDate = (date: Date): Date =>
    new Date(`${date.getFullYear()}.${date.getMonth() + 1}.${date.getDate()}`);

setHours(0, 0, 0, 0)으로 string을 안쓰고 해결함

const getYearMonthDate = (date: Date): Date =>
    new Date(date.setHours(0, 0, 0, 0));

결론

new Date 인자값으로는 number를 써야하고 다른 언어와 연동되기 쉽게 DB에는 number(Unix Time Stamp)로 DB에 저장하는 게 좋다.


This content originally appeared on DEV Community and was authored by wes5510


Print Share Comment Cite Upload Translate Updates
APA

wes5510 | Sciencx (2022-02-19T08:28:50+00:00) 모바일에서 invalid date. Retrieved from https://www.scien.cx/2022/02/19/%eb%aa%a8%eb%b0%94%ec%9d%bc%ec%97%90%ec%84%9c-invalid-date/

MLA
" » 모바일에서 invalid date." wes5510 | Sciencx - Saturday February 19, 2022, https://www.scien.cx/2022/02/19/%eb%aa%a8%eb%b0%94%ec%9d%bc%ec%97%90%ec%84%9c-invalid-date/
HARVARD
wes5510 | Sciencx Saturday February 19, 2022 » 모바일에서 invalid date., viewed ,<https://www.scien.cx/2022/02/19/%eb%aa%a8%eb%b0%94%ec%9d%bc%ec%97%90%ec%84%9c-invalid-date/>
VANCOUVER
wes5510 | Sciencx - » 모바일에서 invalid date. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/02/19/%eb%aa%a8%eb%b0%94%ec%9d%bc%ec%97%90%ec%84%9c-invalid-date/
CHICAGO
" » 모바일에서 invalid date." wes5510 | Sciencx - Accessed . https://www.scien.cx/2022/02/19/%eb%aa%a8%eb%b0%94%ec%9d%bc%ec%97%90%ec%84%9c-invalid-date/
IEEE
" » 모바일에서 invalid date." wes5510 | Sciencx [Online]. Available: https://www.scien.cx/2022/02/19/%eb%aa%a8%eb%b0%94%ec%9d%bc%ec%97%90%ec%84%9c-invalid-date/. [Accessed: ]
rf:citation
» 모바일에서 invalid date | wes5510 | Sciencx | https://www.scien.cx/2022/02/19/%eb%aa%a8%eb%b0%94%ec%9d%bc%ec%97%90%ec%84%9c-invalid-date/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.