5 Ways to Fetch Data from an API in Vue 3 Composition API

Поделиться
HTML-код
  • Опубликовано: 14 июн 2024
  • There are many ways to extract data in Vue, so today, we'll look at 5 ways you can fetch data in your application. We will also look at the new Vue 3 suspense API which tackles this problem differently and create our own composable function to maximize reusability.
    ✨ SOCIAL ✨
    Discord - / discord
    Twitter - / jsbroks
    ⚡ RESOURCES ⚡
    Vue 3 Suspense - vueschool.io/articles/vuejs-t...
    ⭐ TIMESTAMPS ⭐
    0:00 - Vue Data Fetching
    0:28 - Where to fetch data
    1:09 - Fetch API
    1:33 - Axios
    2:15 - async/await onMounted
    2:34 - Async Component
    3:19 - Composable Functions
    3:56 - Custom fetch hook
    4:38 - Fetch hook with Cache
    #Vue #Fetching #Data
  • НаукаНаука

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

  • @Ma1ne2
    @Ma1ne2 2 года назад +7

    Great explanation with great visuals, a calming voice to listen to and exciting but understating music, I loved it! Got a new sub m8 ☺️

  • @parogparog6774
    @parogparog6774 2 года назад +4

    Very concise and to the point. I don't subscribe to channels very often, but the format and depth for the different possibilities you bring up are exactly the type of content an experience dev is looking for. :) Thanks!

  • @_the_one_1
    @_the_one_1 3 года назад +11

    Great video as always Justin. Please create a Vue 3 course and take my money!

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

    useFetch example is very very very great thanks alot man! love from Turkey!

  • @2603bex
    @2603bex 2 года назад

    Brilliant! Thank you

  • @jntaca
    @jntaca 3 года назад

    Thanks !
    Very useful .

  • @MrBiggydicks
    @MrBiggydicks 3 года назад

    Nice one. I'm actually in my first Vue 3 production project right now. I don't actually need any API calls for this one but still good to know

  • @RianY2K
    @RianY2K 3 года назад +5

    thanks for tutorial. Vue JS 3 looks good in Syntax and API

  • @paws7983
    @paws7983 2 года назад

    Many thanks to Justin!

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

    this video just saved my ass from a lot of trouble, Literally. Thank you

  • @gagiknavasatariyan7316
    @gagiknavasatariyan7316 3 года назад

    Hi, Great content Thanks!

  • @darkmift
    @darkmift 2 года назад +4

    Its always good practice to add a repo or gist link to the code used in the presentation.
    Great demo,first time I see use of cache logic and the map use is very cool.

  • @sivasankarant9195
    @sivasankarant9195 3 года назад +5

    Justin thanks man

  • @Endersontutoriales
    @Endersontutoriales 3 года назад

    Nice!!

  • @LukeryaPereprygova
    @LukeryaPereprygova 3 года назад +1

    Very fireship-y))

  • @marvin_e
    @marvin_e 3 года назад

    damn.. this is so awesome

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

    It's probably overkill for just a basic fetch but that last function is really cool. I had to pause screen to copy it :p

  • @epiiiiiii
    @epiiiiiii 3 года назад

    Good stuff. I just wish you were using the Options API until I catch up. 😜

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

    can you explain how to use the method created in last section? because when I call it on component it will return Computedrefimpl

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

    Awesome

  • @AhSoh7091
    @AhSoh7091 3 года назад

    Thanks for sharing, do you have real example to use the useFetchCache hook? i tried it doesn't really work correctly. Hope you can share more about it.

    • @CodingWithJustin
      @CodingWithJustin  3 года назад +1

      It depends on you are using the hook. If you call the two hook immediate after each with the same key, both fetches will be called, since there is nothing in cache until a fetch has finished. This makes it useful for grabing information in lower components that are only dispalyed if a apprent component fetch has successed, or when coming back to the same page as mentioned in the video. Of course you can expand on the hook to make it better.

    • @AhSoh7091
      @AhSoh7091 3 года назад

      @@CodingWithJustin​Thanks for your explanation. Anyway, you made a ton of great video. i love to watch your video.

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

    I didn't think you could use 'reactive' outside of the 'use' function because it had the potential to be initialised before the Vue instance had been configured?

  • @carlosalvarado5331
    @carlosalvarado5331 2 года назад

    I was trying the sample code that you provide the get method is OK but how can I create a post request :v

  • @kinax2
    @kinax2 3 года назад

    Can you make a vue-i18n@next with routing video ?

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

    Should have made video longer and shown examples of how it works by grabbing X from front end and storing it in DB at backend so we can visualize each method and select what we prefer syntaxically. You should also mention which fetching methods are compatible with web components and which are not, make a table (consider it as feedback)

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

      YES! Is there a tutorial like this you know? I could not find it :(

  • @ricko13
    @ricko13 2 года назад

    gold

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

    the composition api is miles ahead of react hooks, they really nailed it with this types and functions

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

      I honestly prefer Vue but i've never really used the composition api, so what makes you think that ?

  • @zlatkoiliev8927
    @zlatkoiliev8927 3 месяца назад

    Shouldn’t we invalidate the cache after some time?!? The approach from the example absolutely prevent fetching new data if we already have cached key. Maybe it will be a good idea to only keep the cache for some time like 15 min or something…

  • @DK-pf2dg
    @DK-pf2dg 3 года назад

    Please make guide how to create a pagination.

  • @pierre1360
    @pierre1360 2 года назад

    what is that ref() stuff?

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

    I m watching a lot of these video but I still can’t understand how should I do to connect vue and axios with my msql database :(

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

      You can use something like Api-platform

  • @rafaelgramoschi957
    @rafaelgramoschi957 9 месяцев назад

    when you check "!config.skip && fetch()" you must "!config.skip && AWAIT fetch()"

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

    This video is like, "Info for beginners, beginners, beginners, dissertation for 2nd PhD in computer science, The End"

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

    Please show examples 🙏

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

    This only confuses matters

  • @MrNihilius
    @MrNihilius 2 года назад

    please without music

  • @Markus-iq4sm
    @Markus-iq4sm Год назад

    Awful explanation, for useFetch you just copy-pace useAsyncState source code function from VueUse. What did you explaine? The case when author does not understand what he actually says

  • @jaromanda
    @jaromanda 2 года назад

    you lost me at axios - it has "a much shorter syntax" ... sure, it does, it's a JS library written using the old XMLHttpRequest methods
    It's SO easy to write a very small library, using fetch, that exposes a similar, short, syntax
    Seriously, you create a function called `useFetch` ... which uses axios (which uses native XMLHttpRequest, not native Fetch) --- sacrilege!!! You probably use internet explorer 7 as your daily web browser!!!