React+axios implements github search user function (sample code)

React+axios implements github search user function (sample code)

insert image description here

load

insert image description here

Request Success

insert image description here

Request failed

insert image description here

Click cmd and press Enter in the file path

insert image description here

insert image description here
insert image description here

First, start the server with npm start

insert image description here

app.js

import React, { Component } from 'react'
import "./App.css"
import Header from './commons/Header'
import List from './commons/List'
export default class App extends Component {
  // Initialize state
  state={
    users:[],
    isloading:false,
    isfirst:true,
    err:''

  }
  update=(updatemessage)=>{
     this.setState(
      updatemessage
     )
  }
  render() {
    return (
      <div className="container">
        <Header update={this.update} />
        <List users={this.state}></List>
      </div>
    )
  }
}

Header.jsx

import React, { Component } from 'react'
import axios from "axios"

export default class Header extends Component {
  search=()=>{
     console.log(this.searchbtn.value);
     this.props.update({isfirst:false, isloading:true})
     axios.get(`http://localhost:3000/api1/search/users?q=${this.searchbtn.value}`).then(
      // Callback response upon success=>{
        
         console.log("Send request successfully",response.data.items);
         this.props.update({users: response.data.items,isloading:false})
       },
      // Callback error upon failure=>{
        this.props.update({err:error.message,isloading:false})
          console.log("failed",error.message);
      }
     )
  } 

    render() {
        return (
            <section className="jumbotron">
            <h3 className="jumbotron-heading">Search Github Users</h3>
            <div>
              <input type="text" placeholder="enter the name you search" 
               ref={c=>this.searchbtn=c}
              />
              &nbsp;
              <button onClick={this.search}>Search</button>
            </div>
          </section>
        )
    }
}

List.jsx

import React, { Component } from 'react'
import Listitem from './Listem'

export default class List extends Component {
  render() {
    return (
      <div className="row">
        {
          this.props.users.isfirst ? <h2 style={{margin:"50px"}}>Welcome to use, please enter the keyword</h2> :
          this.props.users.isloading ? <h2 style={{margin:"50px"}}>Loading......</h2> :
          this.props.users.err ? <h2 style={{margin:"50px"}}>{this.props.users.err}</h2> :
          this.props.users.users.map((a) => {
                  return (
                    <Listitem key={a.id} users={a} />
                  )
                })
        }
      </div>
    )
  }
}

Listitem

import React, { Component } from 'react'
import "./index.css"
export default class Listitem extends Component {
 
    render() {
        return (
            <div className="card" >
            <a href={this.props.users.html_url} target="_blank" >
              <img src={this.props.users.avatar_url} style={{ width: '100px' }} />
            </a>
            <p className="card-text">{this.props.users.login}</p>
          </div>
        )
    }
}

This is the end of this article about react+axios to implement the function of searching github users. For more relevant react axios github search content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Several common methods of sending requests using axios in React
  • How to use axios to make network requests in React Native
  • React axios cross-domain access to one or more domain names

<<:  Detailed explanation of MySQL Truncate usage

>>:  Linux uses shell scripts to regularly delete historical log files

Recommend

Docker exec executes multiple commands

The docker exec command can execute commands in a...

The difference between html empty link href="#" and href="javascript:void(0)"

# contains a location information. The default anc...

Two ways to build a private GitLab using Docker

The first method: docker installation 1. Pull the...

Detailed examples of replace and replace into in MySQL into_Mysql

MySQL replace and replace into are both frequentl...

Detailed tutorial on deploying Springboot or Nginx using Kubernetes

1 Introduction After "Maven deploys Springbo...

Analysis of problems caused by MySQL case sensitivity

MYSQL is case sensitive Seeing the words is belie...

MySQL 5.7.18 download and installation process detailed instructions

MySql Download 1. Open the official website and f...

Detailed steps for installing, configuring and uninstalling QT5 in Ubuntu 14.04

1. I downloaded QT5.13 version before, but after ...

Specific use of Docker anonymous mount and named mount

Table of contents Data volume Anonymous and named...

Detailed explanation of three methods of JS interception string

JS provides three methods for intercepting string...

Some experience sharing on enabling HTTPS

As the domestic network environment continues to ...

Summary of Ubuntu backup methods (four types)

Method 1: To use respin, follow these steps: sudo...

An article to help you understand the basics of VUE

Table of contents What is VUE Core plugins in Vue...

Introduction to Kubernetes (k8s)

I had always wanted to learn Kubernetes because i...