当前位置:   article > 正文

vue实现github搜索功能_类似github的搜索界面

类似github的搜索界面

1.页面设计简介

通过github的一个网址,输入任何内容都可以搜索到相应的内容,并以列表的形式展示给用户。

根据页面形式,代码主要分为两部分,search组件和list组件。

 2.所用知识点

2.1 axios配置代理

在vue终端中下载axios库 npm install axios 并引入。

2.2 全局事件总线

我们知道整体结构可以分为两大部分,search组件用于发送数据,list组件用于接收数据。

2.3 bootstrap样式库

这个样式库非常方便只要拿来用就行,但是可能会出现库里面有些字体或者什么没有进行安装的问题,这时候解决的办法就是将样式库放到public目录下面,在index.html中引入该库就可以解决问题了。

3.代码展示

public/index.html

  1. <!DOCTYPE html>
  2. <html lang="">
  3. <head>
  4. <meta charset="UTF-8">
  5. <!-- 针对IE浏览器的特殊配置,含义是让IE浏览器以最高渲染级别渲染页面 -->
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <!-- 开启移动端的理想端口 -->
  8. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  9. <!-- 配置页签图标 -->
  10. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  11. <!-- 引入bootstrap样式 -->
  12. <link rel="stylesheet" href="<%= BASE_URL %>css/bootstrap.css">
  13. <!-- 配置网页标题 -->
  14. <title><%= htmlWebpackPlugin.options.title %></title>
  15. </head>
  16. <body>
  17. <!-- 容器 -->
  18. <div id="app"></div>
  19. </body>
  20. </html>

src/main.js

  1. import Vue from 'vue'
  2. import App from './App.vue'
  3. Vue.config.productionTip = false
  4. new Vue({
  5. el: "#app",
  6. render: h => h(App),
  7. // 定义全局事件总线
  8. beforeCreate() {
  9. Vue.prototype.$bus = this
  10. }
  11. })

src/App.vue

  1. <template>
  2. <div class="container">
  3. <Search></Search>
  4. <List></List>
  5. </div>
  6. </template>
  7. <script>
  8. import Search from './components/Search.vue';
  9. import List from './components/List.vue';
  10. export default {
  11. name: 'App',
  12. components: {
  13. Search,
  14. List
  15. }
  16. }
  17. </script>

src/components/Search.vue

  1. <template>
  2. <section class="jumbotron">
  3. <h3 class="jumbotron-heading">Search Github Users</h3>
  4. <div>
  5. <input type="text" placeholder="enter the name you search" v-model="keyWord" />&nbsp;
  6. <button @click="getUsers">Search</button>
  7. </div>
  8. </section>
  9. </template>
  10. <script>
  11. import axios from 'axios'
  12. export default {
  13. name: 'Search',
  14. data() {
  15. return {
  16. keyWord: ''
  17. }
  18. },
  19. methods: {
  20. getUsers() {
  21. //请求前更新List的数据
  22. this.$bus.$emit('updateListData', { isLoading: true, errMsg: '', users: [], isFirst: false })
  23. axios.get(`https://api.github.com/search/users?q=${this.keyWord}`).then(
  24. response => {
  25. console.log('请求成功了')
  26. //请求成功后更新List的数据
  27. this.$bus.$emit('updateListData', { isLoading: false, errMsg: '', users: response.data.items })
  28. },
  29. error => {
  30. //请求后更新List的数据
  31. this.$bus.$emit('updateListData', { isLoading: false, errMsg: error.message, users: [] })
  32. }
  33. )
  34. }
  35. }
  36. }
  37. </script>

src/components/List.vue

  1. <template>
  2. <div class="row">
  3. <!-- 展示用户列表 -->
  4. <div class="card" v-show="info.users.length" v-for="user in info.users" :key="user.id">
  5. <a :href="user.html_url" target="_blank">
  6. <img :src="user.avatar_url" style='width: 100px' />
  7. </a>
  8. <h4 class="card-title">{{ user.login }}</h4>
  9. </div>
  10. <!-- 展示欢迎词 -->
  11. <h1 v-show="info.isFirst">欢迎使用!</h1>
  12. <!-- 展示加载中 -->
  13. <h1 v-show="info.isLoading">加载中...</h1>
  14. <!-- 展示错误信息 -->
  15. <h1 v-show="info.errMsg">{{ errMsg }}</h1>
  16. </div>
  17. </template>
  18. <script>
  19. export default {
  20. name: 'List',
  21. data() {
  22. return {
  23. info: {
  24. isFirst: true,
  25. isLoading: false,
  26. errMsg: '',
  27. users: []
  28. }
  29. }
  30. },
  31. mounted() {
  32. this.$bus.$on('updateListData', (dataObj) => {
  33. //动态合并两个对象的属性
  34. this.info = { ...this.info, ...dataObj }
  35. })
  36. },
  37. beforeDestroy() {
  38. this.$bus.$off('updateListData')
  39. }
  40. }
  41. </script>
  42. <style scoped>
  43. .album {
  44. min-height: 50rem;
  45. /* Can be removed; just added for demo purposes */
  46. padding-top: 3rem;
  47. padding-bottom: 3rem;
  48. background-color: #f7f7f7;
  49. }
  50. .card {
  51. float: left;
  52. width: 33.333%;
  53. padding: .75rem;
  54. margin-bottom: 2rem;
  55. border: 1px solid #efefef;
  56. text-align: center;
  57. }
  58. .card>img {
  59. margin-bottom: .75rem;
  60. border-radius: 100px;
  61. }
  62. .card-text {
  63. font-size: 85%;
  64. }
  65. </style>

4.效果展示

 输入test

点击每一个图片可以查看具体信息

 5.总结

vue知识点较多,接下来还会进行深入的学习。

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

闽ICP备14008679号