vue 크로스 도 메 인 요청 설정

vue 크로스 도 메 인 요청 을 실현 하려 면 vue. config. js 에 다음 설정 을 추가 해 야 합 니 다.
     proxy: {
      '/service/rest': {    
        target: 'http://localhost:8080/autotable/service/rest',
        ws: true,
        changeOrigin: true,
        pathRewrite:{
            '^/service/rest':''
        }
    }
  }

그 중에서 changeOrigin 을 true 로 설정 하면 도 메 인 을 넘 어 요청 할 수 없 는 문제 가 존재 하지 않 습 니 다.
그리고 바로 아래 에서 axios 호출 을 인용 할 수 있 습 니 다.
import axios from '@/api/api';
export default {
    userList(params) {
        return axios.post('service/rest/api/user/logincode', params);
    },
  
};

좋은 웹페이지 즐겨찾기