admin管理员组文章数量:1342918
I tried fetching data from a giphy api using the following function and print the returned value to the browser console.
const fetchData = (url) =>
{
return axios.get(url).then(res => res.data.data);
}
const data = fetchData(giphy_url);
console.log(`Data: ${data}`);
But on printing the value of the data
variable, it prints:
Data: [object Promise]
I want the data in the response to be accessed. Is there something that I am missing?
I tried fetching data from a giphy api using the following function and print the returned value to the browser console.
const fetchData = (url) =>
{
return axios.get(url).then(res => res.data.data);
}
const data = fetchData(giphy_url);
console.log(`Data: ${data}`);
But on printing the value of the data
variable, it prints:
Data: [object Promise]
I want the data in the response to be accessed. Is there something that I am missing?
Share Improve this question asked Sep 7, 2021 at 8:57 Purohit IyerPurohit Iyer 531 gold badge1 silver badge4 bronze badges 2-
1
async.. await
? – Yevhen Horbunkov Commented Sep 7, 2021 at 8:59 - You're missing await call to be able to use results of promise synchronously: await fetchData(giphy_url); – Dmytro Evseev Commented Sep 7, 2021 at 9:00
5 Answers
Reset to default 3Axios API calls return a Promise object. From Axios documentation, "Axios is a promise-based HTTP Client for node.js and the browser."
You would need to await on a promise object to access the response value. Note that in order to use await
keyword in your function, you would need to mark it as async
. Do something like below.
const fetchData = async(url) =>
{
return await axios.get(url).then(res => res.data.data);
}
const data = fetchData(giphy_url);
console.log(`Data: ${data}`);
It happend because javascript is a non blocking language and axios' get function is a promise function. So when you print your data variable which is not fill yet, you should use it like this.
const fetchData = async (url) =>
{
return axios.get(url).then(res => res.data.data);
}
// careful that when you want to use await it should be on async function
const data = await fetchData(giphy_url);
console.log(`Data: ${data}`);
// or
fetchData(giphy_url).then((data)=>{
console.log(`Data: ${data}`);
})
You can use async/await
to get data
:
const yourFunction = async () => {
const data = await fetchData(giphy_url);
console.log(`Data: ${data}`);
}
I think you are handling axios in wrong way
const fetchData = async (url) =>{
return await axios.get(url);
}
const data = fetchData(giphy_url);
console.log(`Data: ${data}`)
Use async-await
concept as below:
const fetchData = (url) => {
return axios.get(url);
}
const getData = async () => {
const data = await fetchData(giphy_url);
console.log(`Data: ${data}`);
}
getData();
本文标签: javascriptAxios get function returns a promise in ReactStack Overflow
版权声明:本文标题:javascript - Axios get function returns a promise in React - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743712731a2526216.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论