vue写一个github搜索案例
1)App.vue
<template>
<div class="container">
<Search />
<List />
</div>
</template>
<script>
import Search from "./components/Search.vue";
import List from "./components/List";
export default {
name: "App",
components: {
Search,
List,
},
};
</script>
- Search.vue
<template>
<div>
<section class="jumbotron">
<h3 class="jumbotron-heading">Search Github Users</h3>
<div>
<input
type="text"
placeholder="enter the name you search"
v-model="keyWord"
/> <button @click="searchUsers">Search</button>
</div>
</section>
</div>
</template>
<script>
import axios from "axios";
export default {
data() {
return {
keyWord: "",
};
},
methods: {
searchUsers() {
//请求前更新List的数据(点击了搜索但是还在请求中的情况,就是不知道是否请求成功的时候)
this.$bus.$emit("updateListData", {
isFirst: false,
isLoading: "true",
errMsg: "",
users: [],
}); //写成这种对象的形式的好处就是就算是不按照顺序的,编译器也能够正确传参编译
axios.get(`https://api.github.com/search/users?q=${this.keyWord}`).then(
(response) => {
// console.log("数据请求成功了", response.data.items);
this.$bus.$emit("updateListData", {
isLoading: false,
errMsg: "",
users: response.data.items,
});
},
(error) => {
// console.log("数据请求失败了", error.message);
this.$bus.$emit("updateListData", {
isLoading: false,
errMsg: error.message,
users: [],
});
}
);
},
},
};
</script>
<style>
</style>
- List.vue
<template>
<div class="row">
<div
v-show="info.users.length"
class="card"
v-for="user in info.users"
:key="user.login"
>
<a :href="user.html_url" target="_blank">
<img :src="user.avatar_url" style="width: 100px" />
</a>
<p class="card-text">{{ user.login }}</p>
</div>
<!-- 展示欢迎词 -->
<h1 v-show="info.isFirst">欢迎使用!</h1>
<!-- 展示加载中 -->
<h1 v-show="info.isLoading">加载中</h1>
<!-- 展示错误信息 -->
<h1 v-show="info.errMsg">{{ info.errMsg }}</h1>
</div>
</template>
<script>
export default {
name: "List",
data() {
return {
info: {
isFirst: true,
isLoading: false,
errMsg: "",
users: [],
},
};
},
mounted() {
this.$bus.$on("updateListData", (dataObj) => {
// console.log("我接收到数据了", dataObj);
//用ES6中的语法的好处就是 不用在Search.vue中每一个emit中都写上 isFirst: false 最后都会有这个属性
this.info = { ...this.info, ...dataObj };
});
},
};
</script>
<style scoped>
.album {
min-height: 50rem; /* Can be removed; just added for demo purposes */
padding-top: 3rem;
padding-bottom: 3rem;
background-color: #f7f7f7;
}
.card {
float: left;
width: 33.333%;
padding: 0.75rem;
margin-bottom: 2rem;
border: 1px solid #efefef;
text-align: center;
}
.card > img {
margin-bottom: 0.75rem;
border-radius: 100px;
}
.card-text {
font-size: 85%;
}
</style>