React Axios Get Request Example

By Hardik Savani September 5, 2020 Category : React JS

Now, let's see article of react axios get request with params example. I’m going to show you about axios get request in react js. you will learn react http get request example. We will look at example of axios http request react. Follow bellow tutorial step of react axios http request example.

If you want to learn how to send http get request with react then i will help you step by step instruction for sending http request using axios react. i will give you very simple example to send http get request using axios and react.

Axios is a npm package and the provide to make http request from your application. in this example we will use "jsonplaceholder" api to get data using axios package.

So, let's see bellow example code and preview:

Preview:

Example Code:

import React from 'react';

import axios from 'axios';

export default class PostList extends React.Component {

state = {

posts: []

}

componentDidMount() {

axios.get(`https://jsonplaceholder.typicode.com/posts`)

.then(res => {

const posts = res.data;

this.setState({ posts });

})

}

render() {

return (

<div>

<h1>React Axios Get Request Example - ItSolutionStuff.com</h1>

<table className="table table-bordered">

<tr>

<th>ID</th>

<th>Title</th>

<th>Body</th>

</tr>

{this.state.posts.map((post) => (

<tr>

<td>{post.id}</td>

<td>{post.title}</td>

<td>{post.body}</td>

</tr>

))}

</table>

</div>

)

}

}

I hope it can help you...

Tags :
Shares