当前位置:   article > 正文

vue快速入门(二十七)axios库的下载与使用

vue快速入门(二十七)axios库的下载与使用

注释很详细,直接上代码

上一篇

新增内容

  1. axios.js文件的下载与导入
  2. axios请求的使用与解析赋值

官网不科学上网太慢,csdn资源审核太慢,so我传自己主机了(访问不了@我)
axios.js文件
自己下载一下吧
在这里插入图片描述

源码

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
  </head>

  <body>
    <!-- 挂载点 -->
    <div id="root">
      <img v-for="(item,index) in lists" :key="index" :src="item" style="height: 300px; width: auto;border-radius: 10px;margin: 5px;"/>
    </div>
    <!-- 导入vue的js代码:不会下载的看专栏第一篇 -->
    <script src="./lib/vue2.js"></script>
    <!-- 导入axios的js代码 -->
    <script src="./lib/axios.js"></script>
    <script>
      const app = new Vue({// Vue实例
        
        el: "#root", // 挂载点
        data: {// 数据
          lists:null
        },
        async created() {// 创建完成
          //发网络请求
          const res = await axios.get("https://api.unmz.net/free/api/images/girl/getRandomGirlUrl");
          this.lists = res.data.data;
        },

        methods: {
          // 方法
        },
        computed: {
          // 计算属性
        },
        watch: {
          // 侦听器
        },
      });
    </script>
  </body>
</html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43

效果演示(用了个大家爱看的接口)

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/440956
推荐阅读
相关标签
  

闽ICP备14008679号