vue使用axios获取信息的案例

List组件(用来展示搜索的信息)

<template>
    <div class="row">
        <!-- 列表数据 -->
      <div class="card" v-for="user in info.users" :key="user.login" v-show="info.users.length">
        <a :href="user.html_url" target="_blank">
          <img :src="user.avatar_url" style='width: 100px'/>
        </a>
        <p class="card-text">{{user.login}}</p>
      </div>
     <!-- 欢迎使用 -->
     <div v-show="info.isHeader">欢迎使用</div>
    <!-- 加载数据 -->
    <div v-show="info.isLoaing">加载数据.....</div>
    <!-- 错误信息 -->
    <div v-show="info.errMsg">>  错误信息</div>
    </div> 
</template>

<script>
export default {
  name:"List",
  data(){
    return{ 
        info:{
            isHeader:true,
            isLoaing:false,
            errMsg:'',
            users:[],
        }
    }
  },
    mounted() {
    this.$bus.$on('getUsers',(Objmsg)=>{
        console.log("list收到数据"+Objmsg)
        this.info ={...this.info,...Objmsg} 
        // this.info =Objmsg 

    })
  }, 
}
</script>

<style scoped>
.album {
  min-height: 50rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f7f7f7;
}

.card {
  float: left;
  width: 33.333%;
  padding: .75rem;
  margin-bottom: 2rem;
  border: 1px solid #efefef;
  text-align: center;
}

.card > img {
  margin-bottom: .75rem;
  border-radius: 100px;
}

.card-text {
  font-size: 85%;
}

</style>

          this.info ={...this.info,...Objmsg},es6中的写法,可以将两个对象平摊开然后对比信息,以后面的为准,公共的替换为后面的新值,只有前面有的保留

Serarch组件(用来进行搜索)

<template>
      <section class="jumbotron">
      <h3 class="jumbotron-heading">Search Github Users</h3>
      <div>
        <input type="text" placeholder="enter the name you search" v-model="test"/>
        <button @click="getSearch">Search</button>
      </div>
    </section>
</template>

<script>
import axios from 'axios'


export default {
  name:"Search",
  data(){
    return{
        test:""
    }
  },
  methods: {
   
     getSearch(){
        //搜索中
         this.$bus.$emit('getUsers',{isHeader:false,isLoaing:true,errMsg:'',users:[],})
        axios.get('https://api.github.com/search/users?q='+this.test).then(
            
            response=>{
                console.log("成功",response.data.items)
              this.$bus.$emit('getUsers',{isHeader:true,isLoaing:false,errMsg:'',users:response.data.items,})
             },
             error=>{
                console.log("失败",error.message)
                  this.$bus.$emit('getUsers',{isHeader:true,isLoaing:false,errMsg:error.message,users:[],})
             }
        )
     } ,
    
  },

}
</script>
 

App组件(用来控制所有组件)

<template>
      <div class="container">
       <Search/>
       <List/>
       </div>
</template>

<script> 
import Search from './components/Search'
import List from './components/List'
export default {
  name: "App",
  components:{Search,List}, 
 
}
</script>

搜索时的四种状态

        1.初始

        2.搜索中
        3.成功信息
        4.失败信息

  • 10
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值