vue 온 가족 통 프로젝트 학습 (4. axis)

3051 단어 vue
1. 설치 및 사용
  • 설치
  • npm install -S axios
  • 사용
  • import axios from 'axios';
    export default {
        mounted () {
            axios.post('http://xxx.xxx.xxx.xxx/getInfo', { param: 'test' }).then(res => {
    			...
            }).catch(err => {
    			...
            })
        }
    }
    

    2. 크로스 필드vue.config.js 에 프 록 시 설정
    module.exports = {
        devServer: {
        	//      
            proxy: 'http://xxx.xxx.xxx.xxx'
        }
    }
    
    axios.post('/getInfo', { param: 'test' }).then(res => {
    	...
    }).catch(err => {
    	...
    })
    

    쓰기 가 귀 찮 고 스스로 포장 할 수 있 습 니 다.js 파일 을 따로 써 서 봉인 한 다음 main. js 에 도입 하고 vue.prototype.$xxx = xxx 원형 에서 정의 한 다음 구성 요소 this.$xxx() 에서 직접 사용 할 수 있 습 니 다.
    참고:https://www.kancloud.cn/yunye/axios/234845 http://www.axios-js.com/zh-cn/docs/vue-axios.html

    좋은 웹페이지 즐겨찾기