인프런 커뮤니티 질문&답변

front님의 프로필 이미지
front

작성한 질문수

Vue.js 제대로 배워볼래?(Vue.js 프로젝트 투입 일주일 전)

제품 판매 웹앱 구현 미니 프로젝트 소개 영상

Proxy error: Could not proxy request /api/productList from localhost:8080 to http://127.0.0.1:3000. See https://nodejs.org/api/errors.html#errors_common_system_errors for more information (ECONNREFUSED).

작성

·

858

0

몇일째 이걸로 잡혀있어요 ㅠㅜㅠ
외부 호스트에서 접근 해서 그렇다는데 ㅠㅜㅠㅜ
Proxy error: Could not proxy request /api/productList from localhost:8080 to http://127.0.0.1:3000. See https://nodejs.org/api/errors.html#errors_common_system_errors for more information (ECONNREFUSED).
 
 
개발자 모드에서는
Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'data')
    at _callee$ (mixins.js?9c9e:8)
    at tryCatch (runtime.js?96cf:63)
    at Generator.invoke [as _invoke] (runtime.js?96cf:294)
    at Generator.eval [as next] (runtime.js?96cf:119)
    at asyncGeneratorStep (asyncToGenerator.js?1da1:3)
  at _next (asyncToGenerator.js?1da1:25)
 
이라고 뜨는데 아마 서버에서 값을 못가져 오는 거 같은데 ㅠㅜㅠㅜ
선생님 너무 답답해여 ㅠ

답변 2

0

front님의 프로필 이미지
front
질문자

이미 적혀 져 있습니다 ㅠㅜㅠ

0

개발자의 품격님의 프로필 이미지
개발자의 품격
지식공유자

vue.config.js 파일 프로젝트 루트 폴더에 만들고 아래 코드 넣으세요. 그리고 서버 재시작

 

 const target = 'http://127.0.0.1:3000';

 module.exports = {

 devServer: {

    port: 8080,

    proxy: {

      '^/api': {

        target,

        changeOrigin: true

      },

       '^/upload': {

        target,

         changeOrigin: true,

       },

      '^/download': {

        target,

        changeOrigin: true,

      }     

}

   }

 }

 

front님의 프로필 이미지
front

작성한 질문수

질문하기