js/reply.js
페이지 정보
본문
async function get1(bno) {
console.log("bno : "+bno)
const result = await axios.get(`/replies/list/${bno}`) //홑 따옴표가 아니다.
console.log(result)
}
[설명]
Axios를 이용할 때 async/await를 같이 이용하면 비동기 처리를 동기화된 코드처럼 작성할 수 있다.
async는 함수 선언 시에 사용하는데 해당 함수가 비동기 처리를 위한 함수라는 것을 명시하기 위해서 사용하고,
await는 async 함수 내에서 비동기 호출하는 부분에 사용한다.
- 이전글board/read.html 24.06.24
- 다음글브라우저 콘솔에서 확인 작업 24.06.24
댓글목록
등록된 댓글이 없습니다.