이 글에서는 Vue가 axios를 사용하여 백엔드 데이터를 요청하는 방법을 주로 소개합니다. 이제 필요한 친구들이 참고할 수 있도록 공유하겠습니다.
1. axios
$ npm install axios
2. main.js에서 axios를 가져옵니다
import axios from 'axios'Vue.prototype.$http = axios
3. 이제 axios를 사용하여 데이터를 얻을 수 있습니다
// 发送get请求// 向具有指定ID的用户发出请求this.$http.get('/user?ID=12345') .then(response => { console.log(response); })// 错误处理 .catch(error => { console.log(error); });// 也可以通过 params 对象传递参数$http.get('/user', { params: { ID: 12345 } }) .then(response => { console.log(response); })// 错误处理 .catch(error => { console.log(error); });
🎜🎜#
vue는 axios 교차 도메인 요청 데이터 예제를 사용합니다. 자세한 설명
위 내용은 vue가 axios를 사용하여 백엔드 데이터를 요청하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!