22.10.01 07:26 작성
·
262
0
페이지 구현- 일기쓰기 (/new) 강의의
40분 48초 부터 onClick={handleSubmit}에서
9월 30일이나 10월 31일같이
그 달의 마지막날은 new(새로운 글)이 작성이 되지 않습니다..
이유가 무엇인가요?
const getStringDate = (date) => {
return date.toISOString().slice(0,10);
}
export const getStringDate = (date) => {
let year = date.getFullYear();
let month = date.getMonth() + 1;
let day = date.getDate();
if (month < 10) {
month = 0${month};
}
if (day < 10) {
day = 0${day};
}
return ${year}-${month}-${day};
};
답변 2
0