20.05.25 14:21 작성
·
224
답변 4
1
2020. 05. 26. 10:20
안녕하세요 ~
여러개의 결과값이 나올때는 배열형식 Array안에 {} Object 값으로 표출되는게 맞다고 생각됩니다 ~ !
0
저도 위의 수강생과 동일하게 Post를 가져오지 못해서 그런가
] [HPM] Error occurred while proxying request localhost:3000/api/favorite/favoriteNumber to http://localhost:5000/ [ECONNREFUSED] (https://nodejs.org/api/errors.html#errors_common_system_errors)
[1] [HPM] Error occurred while proxying request localhost:3000/api/users/auth to http://localhost:5000/ [ECONNREFUSED] (https://nodejs.org/api/errors.html#errors_common_system_errors)
이런 에러가 뜹니다
0
선생님 저는 프론트 부분에 Favorite.js에서 useEffect함수안
axios.post('/api/favorite/favoriteNumber',variables)
.then(response=>{
console.log(response.data);
if(response.data.success){
}else{
alert('정보를 가져오는데 실패 했습니다.')
}
}).catch(alert('정보를 가져오는데 실패 했습니다.'))
에서 부터 axios.post를 해오지 못하는데 어느부분을 살펴보는게 좋을가요??
0