<template>
<div>
<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来发送HTTP GET请求,获取用户数据,并将其渲染到列表中。同时,它还展示了如何在Vue生命周期的created
钩子中调用该方法,以在组件创建时获取数据。