码迷,mamicode.com
首页 > 移动开发 > 详细

vue part3.3 ajax (axios) 及页面异步显示

时间:2018-09-21 00:35:33      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:cat   style   nbsp   htm   temp   info   ima   col   efault   

技术分享图片

技术分享图片

 

 技术分享图片

 

 

App.vue

<template>
  <div>
    <div v-if="!repoName">loading</div>
    <div v-else>most start repo is <a :href="repoUrl">{{repoName}}</a></div>
  </div>
</template>

<script>
import axios from axios
export default {
  data () {
    return {
      repoUrl: ‘‘,
      repoName: ‘‘
    }
  },
  mounted () {
    const url = https://api.github.com/search/repositories?q=v&sort=stars
    axios.get(url).then(response => {
      const result = response.data
      const mostRepo = result.items[0]
      this.repoUrl = mostRepo.html_url
      this.repoName = mostRepo.name
    }).catch(error => {
      alert(请求失败)
    })
  }

}

</script>

<style>

</style>

 

vue part3.3 ajax (axios) 及页面异步显示

标签:cat   style   nbsp   htm   temp   info   ima   col   efault   

原文地址:https://www.cnblogs.com/infaaf/p/9684047.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!