(예시)
현재 달력이 2022년 2월인 경우, 연도 = 2021, 월 = 2, 시작일 = 1(고정), 끝일 = 28 이다.
2.의 ajax 호출 리턴 값인 DTO가 존재할 경우, 해당 DTO의 날짜에 해당하는 곳에 ✅를 그려주면 끝이다.
function findDiariesBetweenTime(year, month, startDay, endDay) {
$.ajax({
type: 'GET',
url: '/api/diary/user/diabetes-diary/list?year=' + year + "&month=" + month + "&startDay=1" + "&endDay=" + endDay,
contentType: 'application/json; charset=utf-8'
}).done(function (e) {
for (let i = 0; i < e.response.length; i++) {
const diaryId = e.response[i].diaryId;
const tdId = '#' + String(e.response[i].year) + String(e.response[i].month) + String(e.response[i].day);
$(tdId).append("<input type='hidden' value='" + diaryId + "'/><span id=\"check\" class=\"fas fa-check\"></span>");
}
});
}