第一次在Vue中完整的使用AJAX请求和axios.js
<template>
<div>
<h1>用户列表</h1>
<ul>
<li v-for="user in users" :key="user.id">
{{ user.name }}
</li>
</ul>
</div>
</template>
<script>
import axios from 'axios';
export default {
data() {
return {
users: []
};
},
created() {
this.fetchUsers();
},
methods: {
fetchUsers() {
axios.get('https://jsonplaceholder.typicode.com/users')
.then(response => {
this.users = response.data;
})
.catch(error => {
console.error('There was an error fetching the users: ', error);
});
}
}
};
</script>
这段代码展示了如何在Vue组件中使用axios.js发送GET请求,并在请求成功后更新组件的本地状态。同时,它遵循了Vue的生命周期钩子,在组件创建时获取数据。这是一个简洁且有效的AJAX请求和Vue集成示例。
评论已关闭