js/reply.js
페이지 정보
본문
async function getList({bno, page, size, goLast}){
const result = await axios.get(`/replies/list/${bno}`, {params: {page, size}})
if(goLast){ //마지막 페이지 호출
const total = result.data.total
const lastPage = parseInt(Math.ceil(total/size))
return getList({bno:bno, page:lastPage, size:size})
}
return result.data;
}
- 이전글● 댓글 목록 Sort : ascending() 일 때 24.06.25
- 다음글board/read.html 24.06.25
댓글목록
등록된 댓글이 없습니다.