API Integration with Axios in React
In this article, we will learn how to consume a web service in our react application and use Axios as an HTTP client for making HTTP Requests
Join the DZone community and get the full member experience.
Join For FreeIn this article, we will learn how to consume a web service in our react application. We are going to use Axios as an HTTP client for making HTTP Requests, so before dive in, let’s understand a little bit about Axios, its features, and how we can make HTTP requests using Axios.
Axios
Axios is a promise based HTTP client for making HTTP requests from a browser to any web server.
Features of Axios
- Makes XMLHttpRequests from browser to web server
- Makes HTTP request from node.js
- Supports the promise API
- Handles request and response
- Cancel requests
- Automatically transforms JSON data
Installation
Using npm
$ npm install axios -- save
Example of get and post request:
//post request
axios.post(‘/url’,{data:’data’}).then((res)=>{
//on success
}).catch((error)=>{
//on error
});
//get request
axios.get(‘/url’,{data:’data’}).then((res)=>{
//on success
}).catch((error)=>{
//on error
});
Performing multiple concurrent requests:
function getUserAccount() {
return axios.get('/user/12345');
}
function getUserPermissions() {
return axios.get('/user/12345/permissions');
}
axios.all([getUserAccount(), getUserPermissions()])
.then(axios.spread(function (acct, perms) {
// Both requests are now complete
}));
Using Axios in Our React Application
I am assuming that you have basic knowledge of react fundamentals and it’s life cycle methods.
Step 1: In order to make an HTTP request, we need to install Axios and add it’s dependency in our package.json file. If you have not already installed, then use this command in your terminal.
npm install axios --save
Step 2: In order to use Axios in our project, we need to import Axios from our node modules.
import axios from "axios";
Step 3: Now create a React component, where we want to consume any web service in our react application.
Here, we want to display user message suppose, so we make a component and initialize with initial state.
import React,{Component} from ‘react’;
class UserMsg extends Component{
constructor(){
super();
this.state={
userMsg:null
}
}
render(){
return(
{
this.state.userMsg!=null &&
<div>
<h2>{this.state.userMsg.title}</h2>
<p>{this.state.userMsg.body}</p>
</div>
}
);
}
}
export default UserMsg;
Step 4: Now make a rest call inside the componentDidMount method of react component lifecycle.
The componentDidMount is executed after the first render only on the client side. This is where AJAX requests and DOM or state updates should occur. This method is also used for integration with other JavaScript frameworks and any functions with delayed execution like setTimeout or setInterval. We are using it to update the state so we can trigger the other lifecycle methods.
We are making a get request with a public API "https://jsonplaceholder.typicode.com/posts/1"
That will return JSON
{
"userId": 1,
"id": 1,
"title": "sunt aut facere repellat provident occaecati excepturi optio reprehenderit",
"body": "quia et suscipit suscipit recusandae consequuntur expedita et cum reprehenderit molestiae ut ut quas totam nostrum rerum est autem sunt rem eveniet architecto"
}
In the componentDidMount method, we make a REST API call and set the state to display on UI.
componentDidMount(){
axios.get(‘https://jsonplaceholder.typicode.com/posts/1’,{}).then((res)=>{
//on success
this.setState({
userMsg:res.data
});
}).catch((error)=>{
//on error
alert(“There is an error in API call.”);
});
}
Here is the output of the complete program:
import React,{Component} from "react";
import axios from "axios";
class UserMsg extends Component{
constructor(){
super();
this.state={
userMsg:null
}
}
componentDidMount(){
axios.get("https://jsonplaceholder.typicode.com/posts/1",{}).then((res)=>{
//on success
this.setState({
userMsg:res.data
});
}).catch((error)=>{
//on error
alert("There is an error in API call.");
});
}
render(){
return(
this.state.userMsg!=null &&
<div>
<h2>{this.state.userMsg.title}</h2>
<p>{this.state.userMsg.body}</p>
</div>
);
}
}
export default UserMsg;
Published at DZone with permission of Mrityunjay Karn. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments