20.01.27 12:08 작성
·
249
답변 4
2
async loadPosts({ commit, state }, payload) {
if(state.hasMorePost) {
try {
const res = await this.$axios.get(`http://localhost:3085/posts?offset=${state.mainPosts.length}&limit=10`);
commit('loadPosts', res.data);
} catch (err) {
console.error(err);
}
}
},
저는 이렇게 수정해서 해결했습니다만...
똑같은 질문이 계속 올라오네요;;
0
0
2020. 01. 28. 09:49
바꿨는데 에러 메세지가 출력 안되여
https://github.com/hyunsokstar/vue-nodebird-hyun/blob/master/ch2/front/store/posts.js
콘솔 메세지도 then 전까지만 출력되여
client.js?06a0:43 index fetch 실행
client.js?06a0:43 loadPosts 실행 확인 1111
client.js?06a0:43 loadPosts 실행 확인 2222
ㅈㅅ한데 한번 받아서 해봐주시면 안될까여
0
2020. 01. 27. 19:35
then 뒤에 catch를 붙여보세요. 에러가 뜰 것입니다.
.catch((err) => {
console.log(err);
});