Vue github用户搜索案例分享

目录
  • 完成样式
    • 1、public 下新建 css 文件夹
    • 2、新建 Search.vue
    • 3、新建 List.vue
    • 4、App.vue 中引入并注册组件
  • 请求数据
    • 1、Search 中请求数据
    • 2、传递数据
  • 完善
  • 使用 vue-resource

完成样式

1、public 下新建 css 文件夹

public 下新建 css 文件夹,放入下载好的 bootstrap.css,并在 index.html 中引入

2、新建 Search.vue

<template>
  <section class="jumbotron">
    <h3 class="jumbotron-heading">Search Github Users</h3>
    <div>
      <input type="text" placeholder="enter the name you search"/>&nbsp;<button>Search</button>
    </div>
  </section>
</template>

<script>
export default {
  name: "Search"
}
</script>

3、新建 List.vue

<template>
  <div class="row">
    <div class="card">
      <a href="" target=" rel="external nofollow" _blank">
        <img src="https://cn.vuejs.org/images/logo.svg" style="width: 100%"/>
      </a>
    </div>
  </div>
</template>

<script>
export default {
  name: "List"
}
</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: .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>

4、App.vue 中引入并注册组件

<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、Search 中请求数据

我们使用接口:https://api.github.com/search/users?q=xxx

请求上边的接口,传入关键字,用 axios 请求,返回数据如下:

我们关注以下数据即可

2、传递数据

我们在子组件 Search.vue 中写网络请求得到数据,需要在子组件 List 中展示,组件之间传递数据,这就用到了我们之前学的全局事件总线,确保 main.js 中安装了全局事件总线

List 中需要数据,我们就需要绑定事件,当 Search 得到数据触发事件后,List 回调就拿到了数据,然后循环遍历即可,

<template>
  <div class="row">
    <div class="card" v-for="user in users" :key="user.login">
      <a :href="user.html_url" rel="external nofollow"  rel="external nofollow"  target="_blank">
        <img :src="user.avatar_url" style="width: 100%"/>
      </a>
      <p class="card-text">{{user.login}}</p>
    </div>
  </div>
</template>

<script>
export default {
  name: "List",
  data(){
    return{
      users:[]
    }
  },
  mounted() {
    this.$bus.$on("getUsers",(users)=>{
      console.log("我是List组件,收到数据:"+users);
      this.users = users
    })
  }
}
</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: .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>

Search.vue 中网络请求数据后,触发事件

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

<script>
import axios from 'axios'
export default {
  name: "Search",
  data(){
    return{
      keyword:''
    }
  },
  methods:{
    searchUsers(){
      axios.get(`https://api.github.com/search/users?q=${this.keyword}`).then(
          response =>{
            console.log("请求成功了",response.data.items);
            this.$bus.$emit("getUsers",response.data.items)
          },
          error=>{
            console.log("请求失败了",error.message);
          }
      )
    }
  }
}
</script>

运行程序,搜索 test ,结果如下:

完善

  • 1、当一进页面需要展示欢迎语
  • 2、搜索过程中展示loading
  • 3、搜索结束展示用户列表
  • 4、搜索返回错误展示错误信息

在 List 中增加变量表示这些状态

<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" rel="external nofollow"  rel="external nofollow"  target="_blank">
        <img :src="user.avatar_url" style="width: 100%"/>
      </a>
      <p class="card-text">{{ user.login }}</p>
    </div>
    <!--展示欢迎词-->
    <h1 v-show="info.isFirst">欢迎使用</h1>
    <!--展示loading-->
    <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("我是List组件,收到数据:" + dataObj);
      //因为Search中isFirst第二次没有传,this.info = dataObj 这样写会丢失isFirst
      //ES6语法,这样写dataObj更新this.info中数据,dataObj没有的以this.info中为准
      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: .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>

Search.vue 中改变这些状态

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

<script>
import axios from 'axios'
export default {
  name: "Search",
  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);
            //请求成功后更新 List 数据
            this.$bus.$emit("updateListData",{isLoading:false,errMsg:'',users:response.data.items})
          },
          error=>{
            console.log("请求失败了",error.message);
            //请求失败更新 List 数据
            this.$bus.$emit("updateListData",{isLoading:false,errMsg:error.message,users:[]})
          }
      )
    }
  }
}
</script>

运行程序:

使用 vue-resource

  • 1、执行npm i vue-resource安装
  • 2、main.js 引入并使用
......
//引入vue-resource
import vueResource from 'vue-resource'

......
//使用vue-resource插件
Vue.use(vueResource)

......

我们可以不引入 axios,axios.get 改为 this.$http.get 即可

这里只是了解使用 vue-resource,还是推荐使用 axios

到此这篇关于Vue github用户搜索案例分享的文章就介绍到这了,更多相关Vue github用户搜索内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

(0)

相关推荐

  • vue cli 3.x 项目部署到 github pages的方法

    github pages 是 github 免费为用户提供的服务,写博客,或者部署一些纯静态项目. 最近将 vue cli 3.x 初始化项目部署到 github pages,踩了一些坑,记录如下. https://github.com/nusr/resume-vue 1. vue-router 不要开启 history 模式 路径中的 # 比较丑,就开启了 vue-router 的 history 模式,去掉了 #.平时做项目也是默认开启 history 模式.折腾了半天发现,我这是部署到 g

  • 详解使用mpvue开发github小程序总结

    前言 最近有点闲,想起关注已久的mpvue写小程序,所以稍微肝了半个多月写了个github版的微信小程序,已上线.现在总结一下遇到的坑. 扫码体验. 项目地址:https://github.com/cheesekun/wx-github mina坑 scroll-view 高度 可滚动视图区域. 使用竖向滚动时,需要给<scroll-view/>一个固定高度,通过 WXSS 设置 height. 小程序提供的scroll-view组件,想让他能滚动,就要给他提供一个固定的高度. 我们一般需求是

  • vue项目打包上传github并制作预览链接(pages)

    当Vue项目完成后,在根目录下打开命令行,输入命令: npm run build 实际上此命令就是执行build.js文件,将项目打包成静态资源. 此命令完成后,项目根目录下会多出一个dist文件夹,dist文件里面有: static文件下包括项目打包后的css.js.img.fonts(字体图标). 项目资源无法加载 点击index.html,浏览器显示该页面是空白的.打开控制台看到index.html文件中没有加载任何css.js文件. 解决方法: 打开项目根目录config下的index.

  • vue项目上传Github预览的实现示例

    最近在用Vue仿写cnode社区,想要上传到github,并通过Github pages预览,在这个过程中遇到了一些问题,因此写个笔记,以便查阅. 完成Vue项目以后,在上传到github之前,需要修改一些配置才能通过github pages预览项目. 一.修改配置 1.解决文件路径问题: 打开项目根目录config文件夹下的index.js文件,进行如下修改: 看清楚是 build(上边还有个dev 是开发环境下的配置,不需要改动)下的 assetsPublicPath :将'/'改为'./'

  • vue项目实现github在线预览功能

    最近在使用 vue-cli 脚手架工具构建自己的第一个 vue 项目,有点小激动,想把它上传到 github 并展示一下预览效果,结果踩了好多坑,折腾了大半天才弄好. 这里假设你也是和我一样使用了 vue-cli 搭建了自己的项目,并且项目也已经上传到了 github 问题1 当我们在命令行执行 npm run build 后,项目的目录下会生成一个 dist 文件夹,它里面又包含一个 static 文件夹和一个 index.html 文件,这是 webpack 最终打包好的文件 我们先尝试在浏

  • vue实现GitHub的第三方授权方法示例

    目录 创建OAuth Apps 获取code 获取access_token 获取用户信息 最近在完善我的博客系统,突然想到从原本临时填写 name + email 进行评论改成使用GitHub授权登陆以发表评论. 废话不多说,直接奔入主题 温馨提示:本文章只满足个人使用需求,如果需要学习更详细的使用方法,可访问 OAuth官方文档. 创建OAuth Apps 首先,你需要一个GitHub账户然后前往GitHub developers,根据要求填写完成之后,会自动生成Client_ID和Clien

  • vue项目打包后上传至GitHub并实现github-pages的预览

    vue项目打包后上传至GitHub,并实现github-pages的预览 1. 打包vue 项目 vue项目: 命令行输入打包命令npm run build,生成了dist文件夹: 打包完成. 打包常见问题1--项目资源无法加载 打开刚刚打包好的dist文件夹,浏览器打开index.html 发现该页面是空白的,打开控制台发现 这里看到index.html文件中没有加载任何css.js文件. 解决方法--修改config文件 打开项目根目录config下的index.js文件,进行如下修改: 即

  • Vue github用户搜索案例分享

    目录 完成样式 1.public 下新建 css 文件夹 2.新建 Search.vue 3.新建 List.vue 4.App.vue 中引入并注册组件 请求数据 1.Search 中请求数据 2.传递数据 完善 使用 vue-resource 完成样式 1.public 下新建 css 文件夹 public 下新建 css 文件夹,放入下载好的 bootstrap.css,并在 index.html 中引入 2.新建 Search.vue <template>   <section

  • Vue Vuex搭建vuex环境及vuex求和案例分享

    目录 Vuex介绍 概念 何时使用 多个组件需要共享数据时 求和案例–纯vue版 搭建vuex环境 求和案例–vuex版 一些疑惑和问题 Vuex介绍 概念 在 Vue 中实现集中式状态(数据)管理的一个 Vue 插件,对 vue 应用中多个组件的共享状态进行集中式的管理(读写),也是一种组件间通信的方式,且适用于任意组件间通信 何时使用 多个组件需要共享数据时 求和案例–纯vue版 新建 Count.vue 组件,并在 App.vue 中注册引用 <template>   <div&g

  • vuex(vue状态管理)的特殊应用案例分享

    有需求才会有应用! 需求:vue项目中,我需要一个类似全局的变量保存一个tag的值,在不同层级下的子组件中,对这个变量进行修改,并且使变化的结果作用在组件页面上. 这里使用vuex解决问题,代码如下: import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex); const state = { spinTag: false, //spin组件标记 }; //改变状态的方法 const mutations = { spinTagTAG(s

  • Vue  vuex配置项和多组件数据共享案例分享

    目录 getters 配置项 mapState.mapGetters mapActions.mapMutations 多组件共享数据 没有看过上一篇的同学可以查看: Vue Vuex搭建vuex环境及vuex求和案例分享 getters 配置项 index.js 中增加 getters 配置项 //准备getters,用于将state中的数据进行加工 const getters = {     bigSum(state){         return state.sum*10     } }

  • vue实现百度搜索功能

    本文实例为大家分享了vue实现百度搜索功能的具体代码,供大家参考,具体内容如下 最终效果: Baidusearch.vue所有代码: <template> <div> <div class="container" id="app"> <div class="page-header"> <h2 class=" text-center text-primary">百度搜索

  • Vue保持用户登录状态(各种token存储方式)

    目录 怎么设置Cookie Cookie的缺点: LocalStorage与SessionStorage存储Token LocalStorage与SessionStorage的主要区别: Vuex存储Token 为什么要使用Vuex 在前端中,实现保持用户登录状态的方法有很多种,你通过可以存Cookie.Session.Token等信息来保持,不管后台向前端发送哪个我们要做的就是将这些信息存在在本地浏览器中,浏览器再次发送请求时,将设置了'键'='值'的Cookie再次抛给服务器,服务器通过Co

  • vue实现用户登录切换

    本文实例为大家分享了vue实现用户登录切换的具体代码,供大家参考,具体内容如下 切换有问题 代码 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <div id="app"> <span

  • HTML+CSS+JS实现的简单应用小案例分享

    目录 1.猜数字 2.表白墙 3.切换日夜间模式 4.待办事项 1.猜数字 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport&q

  • typescript在vue中的入门案例代码demo

    目录 搜索框searchBox.vue 首页Home.vue 热门城市 popularCity.vue 天气 weather.vue getWeather.ts 使用技术栈vue2+typescript+scss入门练手项目,天气预报demo,需要的朋友可以参考下.整体的实现思路比较简单,页面也只有一个,包含三部分,搜索框.热门城市和天气预报,组件库用的是ElementUI. 搜索框searchBox.vue <template> <div id="search"&g

  • JS库中的Particles.js在vue上的运用案例分析

    知乎的首页后面的粒子动效总觉得很炫酷,搜了一下,发现是用particles.js编写的.刚好目前的项目是利用vue框架的,两个凑在一起学了. 讲道理,这个用得好的话,页面是可以很酷的,譬如我现在写的项目 酷酷的登录页 嘻嘻~ 安装particles.js npm install --save particles.js 配置particles.js 1.data 这个data是用于控制粒子在页面中所呈现的状态. { "particles": { "number": {

随机推荐