Тёмный

Fetch API with Async/Await (GET, POST, PUT, DELETE) 

ByteGrad
Подписаться 153 тыс.
Просмотров 27 тыс.
50% 1

Опубликовано:

 

5 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 24   
@princeoguru446
@princeoguru446 Год назад
This is the best content available on the internet rn. I have searched several youtube channels but finally found a reason to smile
@AlbrechtJ
@AlbrechtJ Год назад
Wow, this guy is a good teacher. Very clear explanation.
@Coding-ls7ys
@Coding-ls7ys 3 месяца назад
Thank you so much for your explanation! I was searching for a particular video that could cover a lof of ground on api and I found it. Your explanation is clear and precise and doesn't make any problems to understand comparing to the content in my native language
@ulugbektoshmatov3433
@ulugbektoshmatov3433 7 месяцев назад
Tutorials by You and Net Ninja are just at another level🙌
@archangel4894
@archangel4894 2 года назад
Hey dude, I just want you to know that your video helps me to understand better how to manipulate data from API. Thank You!
@erickgarciacosta
@erickgarciacosta Год назад
Thank you for this amazing content! Helped me a lot and it was the best I found on internet!
@leythecg
@leythecg 2 года назад
very well explained and presented! Thanks very much!
@Jupiter5001
@Jupiter5001 Год назад
Best video explains Async/Await
@ludwigvillalba1886
@ludwigvillalba1886 11 месяцев назад
Well explained!
@codecobber1107
@codecobber1107 2 года назад
Absolutely brilliant. Thank you
@prasad_yt
@prasad_yt Год назад
Excellent explanation... that is teaching ❤
@ByteGrad
@ByteGrad 2 года назад
Hi, mastering JavaScript is critical if you want to be a modern, professional developer: www.udemy.com/course/professional-javascript-course/?referralCode=0C1D5752923168BC87C2 Also, if you are a front-end developer then mastering CSS (including Flexbox, CSS Grid, etc.) is equally important: www.udemy.com/course/professional-css/?referralCode=4C3C08E82629E6B15752
@Abbos_700
@Abbos_700 8 месяцев назад
thank you
@mretineh1172
@mretineh1172 2 года назад
Thanks for this
@bitcollector6285
@bitcollector6285 Год назад
Thanks for the video! Very useful! I have a few questions: @ 3:29 line 6 1) is this return statement mandatory/necessary? 2) How can we use this return statement? I'm trying to store the json data retrieved by fetch like this: let words = fetch('words.json').then(res => {return res.json()})... or return the data in the next then() block but instead of the the array i'm expecting to get i'm getting a promise object. Of course i can declare a global array var and assign the res.json() to it... but i thought all these new features could somehow eliminate the use of global vars. Any ideas please?
@ByteGrad
@ByteGrad Год назад
1) Yes, res.json() alone gives us a promise. We should return that promise. 2) I'm not sure what you mean exactly. After returning the promise in the first .then() block we get the value with which that promise resolves in the second .then() block.
@bitcollector6285
@bitcollector6285 Год назад
@@ByteGrad Thanks for the reply 2) What I mean... ie fs.readdir comes in 2 flavors, one sync one async. If i want to use the array returned by the function at a later time I can use the sync version. Is there anything similar in fetch as well? ie something like var mydata = fetch("blah').then(another blah).then(...); Or the only way to store this data is something like: var mydata; fetch("blah').then(another blah).then(data=>{ mydata = data;} ); The 2nd way works for me but it doesn't look very... elegant !
@ByteGrad
@ByteGrad Год назад
@@bitcollector6285 Second way is how it would work, yes. Check out my async/await with fetch video, that syntax is more elegant. Or just go straight to my Professional JavaScript course to see how it works with realistic projects
@bitcollector6285
@bitcollector6285 Год назад
@@ByteGrad Thank you!
@cescr3821
@cescr3821 Год назад
thank you love ♥
@basmong
@basmong Год назад
How to switch to another page properly? It shows that "total_pages: 2" within the data object.
@vincenzocristiano135
@vincenzocristiano135 2 года назад
thank you Sir
@anurajms
@anurajms Год назад
thank you
@Khiladi-Kisse
@Khiladi-Kisse Год назад
where can i get the source code you used in this video my good sir?
Далее
How to FETCH data from an API using JavaScript ↩️
14:17
POST Form Data as JSON with Fetch API in JavaScript
9:25
All 17 React Best Practices (IMPORTANT!)
1:46:11
Просмотров 156 тыс.
1.1: fetch() - Working With Data & APIs in JavaScript
15:39