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

Поделиться
HTML-код
  • Опубликовано: 29 авг 2024

Комментарии • 24

  • @princeoguru446
    @princeoguru446 11 месяцев назад +7

    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 Год назад +11

    Wow, this guy is a good teacher. Very clear explanation.

  • @Coding-ls7ys
    @Coding-ls7ys 2 месяца назад +1

    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 6 месяцев назад +1

    Tutorials by You and Net Ninja are just at another level🙌

  • @archangel4894
    @archangel4894 Год назад +1

    Hey dude, I just want you to know that your video helps me to understand better how to manipulate data from API. Thank You!

  • @Jupiter5001
    @Jupiter5001 Год назад +1

    Best video explains Async/Await

  • @leythecg
    @leythecg 2 года назад +2

    very well explained and presented! Thanks very much!

  • @erickgarciacosta
    @erickgarciacosta Год назад +1

    Thank you for this amazing content! Helped me a lot and it was the best I found on internet!

  • @ludwigvillalba1886
    @ludwigvillalba1886 10 месяцев назад +1

    Well explained!

  • @codecobber1107
    @codecobber1107 2 года назад +1

    Absolutely brilliant. Thank you

  • @Abbos_700
    @Abbos_700 7 месяцев назад +1

    thank you

  • @prasad_yt
    @prasad_yt Год назад

    Excellent explanation... that is teaching ❤

  • @cescr3821
    @cescr3821 Год назад +1

    thank you love ♥

  • @mretineh1172
    @mretineh1172 Год назад +1

    Thanks for this

  • @vincenzocristiano135
    @vincenzocristiano135 Год назад +1

    thank you Sir

  • @bitcollector6285
    @bitcollector6285 Год назад +1

    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  Год назад +2

      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  Год назад +1

      @@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!

  • @basmong
    @basmong 11 месяцев назад

    How to switch to another page properly? It shows that "total_pages: 2" within the data object.

  • @Khiladi-Kisse
    @Khiladi-Kisse Год назад

    where can i get the source code you used in this video my good sir?

  • @ByteGrad
    @ByteGrad  2 года назад +1

    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

  • @anurajms
    @anurajms Год назад +1

    thank you