인프런 커뮤니티 질문&답변
메인 게시글 불러오기가 잘안되여
작성
·
196
답변 2
0
terecal
질문자
store의 actions 의 loadPosts 의 than 이후가 실행이 안되여
에러는 없고 res를 출력하고 싶은데 잘안되서여
loadPosts({ commit, state }, payload) {
console.log("loadPosts 실행 확인 11");
if (state.hasMorePost) {
console.log("loadPosts 실행 확인 22");
this.$axios.get(`http://localhost:3085/posts?offset=${state.mainPosts.length}$limit=10`)
.then((res) => {
console.log("res : ", res);
commit('loadPosts', res.data);
})
.catch(() => {
});
}
},
네트워크 탭은

0





