vue3.x axios使用

Posted 天行子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue3.x axios使用相关的知识,希望对你有一定的参考价值。

 

安装axios

npm install axios --save-dev

App.vue

<template>
    <div id="app">
        <Example></Example>
    </div>
</template>

<script>

    import Example from \'./components/Example\'
    export default {
        name: \'App\',
        components:{
            Example
        }
    }
</script>

<style scoped>
</style>

Example.vue

<template>
    <div id="example">
        <button @click="getData">获取数据</button>
        <ul>
            <li v-for="data in dataList" :key="data.id">
                <h3>{{data.login}}</h3>
                <img :src="data.avatar_url" />
            </li>
        </ul>
    </div>
</template>
<script>
    import axios from \'axios\';
    export default {
        name: "Example",
        data:function(){
            return {
                dataList:[]
            }
        },
        methods:{
            getData:function () {
                axios.get(\'https://api.github.com/users\')
                    .then(res=>{
                        this.dataList = res.data;
                    })
                    .catch(err=>{
                        console.log(err);
                    })
            }
        }
    };
</script>
<style scoped>
    #example{
        text-align: center;
    }
    #example p{
        text-align: center;
        color:#fff;
        background-color: #0c63e4;
    }
    #example ul {
        list-style: none;
    }
    #example ul li {
        width: 50%;
        margin: 0 auto;
        background-color: #ccc;
    }
    #example li img{
        width:100px;
        height: 100px;
    }
</style>

浏览器点击 获取数据 按钮

以上是关于vue3.x axios使用的主要内容,如果未能解决你的问题,请参考以下文章

vue3中使用axios

VSCode自定义代码片段14——Vue的axios网络请求封装

VSCode自定义代码片段14——Vue的axios网络请求封装

VSCode自定义代码片段14——Vue的axios网络请求封装

简单对比vue2.x与vue3.x响应式及新功能

2022-03-03 vue3中使用全局变量