在Vue.js中可以使用axios庫(kù)來(lái)發(fā)送AJAX請(qǐng)求。
首先需要安裝axios庫(kù):
npm install axios
然后在Vue組件中引入axios,并在需要發(fā)送請(qǐng)求的地方使用axios發(fā)送請(qǐng)求:
import axios from 'axios';
export default {
data() {
return {
responseData: null
};
},
methods: {
fetchData() {
axios.get('https://api.example.com/data')
.then(response => {
this.responseData = response.data;
})
.catch(error => {
console.error(error);
});
}
}
};
在上面的例子中,我們使用axios發(fā)送了一個(gè)GET請(qǐng)求到https://api.example.com/data
,并將返回的數(shù)據(jù)存儲(chǔ)在組件的responseData
屬性中。
當(dāng)然,除了GET請(qǐng)求,axios還支持POST、PUT、DELETE等請(qǐng)求方法,具體可以查看axios的文檔:https://github.com/axios/axios。