get request react
// Simple GET request using fetch
fetch('https://api.npms.io/v2/search?q=react')
.then(response => response.json())
.then(data => this.setState({ data: data.feed }));
get request react
// Simple GET request using fetch
fetch('https://api.npms.io/v2/search?q=react')
.then(response => response.json())
.then(data => this.setState({ data: data.feed }));
React get method
/* React get method. */
componentWillMount(){
fetch('/getcurrencylist',
{
/*
headers: {
'Content-Type': 'application/json',
'Accept':'application/json'
},
*/
method: "get",
dataType: 'json',
})
.then((res) => res.json())
.then((data) => {
var currencyList = [];
for(var i=0; i< data.length; i++){
var currency = data[i];
currencyList.push(currency);
}
console.log(currencyList);
this.setState({currencyList})
console.log(this.state.currencyList);
})
.catch(err => console.log(err))
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us