IT'S DO
728x90
fetch('/api/v1/book/'+id).then(response => {
    console.log('response-opinion', response);
    if (response.ok) {
        return response.json();
    }
}).then(json => {
    console.log(json, "json");
    let html = '';
    if (!json.length) {
        html = '<td colspan="5">등록된 책이 없습니다.</td>';
    } else {
        json.forEach((obj, idx) => {
            console.log(obj, "obj");
            html += `
      <td style="text-align: center;"><span class="event-td-font">${json.length - idx}</span></td>
`;
        })
    }
});

에서

 

# 내림차순 

${json.length - idx}

 

# 오름차순

${idx + 1}

 

 

profile

IT'S DO

@멋진놈

포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!