js/reply.js > SPRING_DATA_JPA

본문 바로가기

사이트 내 전체검색

뒤로가기 SPRING_DATA_JPA

js/reply.js

페이지 정보

작성자 관리자 작성일 24-06-25 11:23 조회 116 댓글 0

본문

//목록

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;

}


//등록

async function addReply(replyObj) {


const response = await axios.post(`/replies/`,replyObj)


return response.data

댓글목록 0

등록된 댓글이 없습니다.


Copyright © dancePKT. All rights reserved.
PC 버전으로 보기