Introduction
In this tutorial, I will be explaining how to fetch data asynchronously from an external API using web technologies like AJ...
For further actions, you may consider blocking this person and/or reporting abuse
Note that response.json() returns a PROMISE. This is a common misconception. This article is a wee bit misleading in the async / await example, the data variable will be a promise but the example sort of makes it seem like response.json() is sync by not using await in front of the call.
Thank you for spotting that out Mattias, it was a mistake, and the code as been edited.
Cheers.
What is a Promise?
Take a look at MDN
developer.mozilla.org/en-US/docs/W...
Is there a way extract data from promise? For example, I don't want to use like this:
You can await Promises.
That's how async/await compile with babel, into Promises.
Thanks a lot. It worked :) Why I didn't try that. I think I was confused.
Ah much better xD
Do you not like the syntax? Or do you not want to deal with promises?
I just wonder about assign result to a variable. I don't wan't to use then all time. For example:
I just did this and it seemed to work:
Then
foo
is accessible object like:foo.title
"sunt aut facere repellat provident occaecati excepturi optio reprehenderit"
Thanks a lot. That's exactly what I want.
don't know of any, apart from .then(), and .catch() -> for errors.
Great article. It inspired me to experiment with API's since I'm in a period of learning Javascript. But doing a small project I got a problem, and since I didn't find an article online, I thought to ask here, hope I'll be clear:
Is there a possibility to make the async function and getData in different functions or objects?
Because in your example both these are immediately after one another. But after some time my code gets messy, so I wanted to make the function and the call in different objects.
Thank you.
Hello, can you share your code
since I'm working on Glitch, here is the full project: glitch.com/edit/#!/titanium-freeze
As you can see, inside the function getMovies it's async function and getData(). Can I make these two not inside one function but instead in two? One can get the data, the other can show it?
Thank you.
Can't access that URL, can you paste your code here please, or possibly push to GitHub and send the URL
Strange. Anyway here it is in Github: github.com/erip2/MovieApp/
firstly, what are the datas you are trying to get from the API, i can also see you are trying to persist to sessionstorage, es6 classes could make the code look cleaner a bit tho, have a separate class for your ui, another class for you Session or local storage, then another class for the Movie.
The data I'm getting from API is an array of movie titles the user search. Then when user clicks for details, I save the movie ID in sessionStorage to open a new window with that movie details.
That was exactly why I asked, to do these in different places in my code. Could I do these in different objects or should I read about JS classes since I don't know them very well to use it?
Thanks again.
sorry for the late reply, can you check this out github.com/abejide001/Github-profi....
Won't Ajax jquery be easier than this ?
with sound knowledge in vanilla JavaScript, you might not need jquery in your code, i prefer Ajax with vanilla JavaScript to Ajax with jquery.
Okay that is good
jQuery is a very large library if you just want Ajax
when i use fetch API I AM GETTING NOTHING ON MY LOCAL HOST
THIS IS MY CODE
var express = require("express");
var app = express();
app.listen(3000, () => {
console.log("Server running on port 3000");
});
const fetch = require('node-fetch');
fetch('URL')
.then(res => res.json())//response type
.then(data => console.log(data));
Can I translate this to spanish in my Medium blog? I will reference this post
You are free to do so.
And while learning these, you may want to know they invented a new way of fetching a resource youtu.be/Wi_PhaFdjlo
Great article. It cleared me perfectly in a very brief and precise manner. Thanks
Nice, thanks for the information!
When working with the fetch API, how would I put in my access tokens and keys with the request? I've been stuck for two days in this Twitter app.
alternatives to Promise?
let vs var ?
How would you loop through the received data, if you want let's say just a certain part of it to display?
We can direct fetch data from the database usng Ajax and PHP
bit.ly/2CKqH6t
Sir , I have url and api_key than how can fetch data ...........