React Router Tutorial - 10 - Dynamic Routes

Поделиться
HTML-код
  • Опубликовано: 24 авг 2024
  • 📘 Courses - learn.codevolu...
    💖 Support UPI - support.codevo...
    💖 Support PayPal - www.paypal.me/...
    💾 Github - github.com/gop...
    ⚡️ Checkout Taskade! www.taskade.com/
    To upgrade any workspace, login and visit www.taskade.co...
    Use coupon code: CodevolutionRUclips for any workspace upgrade. Select "Add promo code" on checkout, enter the code, then hit "Apply". This will apply a 100% one year subscription discount. Enjoy and feel free to invite others to your workspace!
    📱 Follow Codevolution
    + Twitter - / codevolutionweb
    + Facebook - / codevolutionweb
    📫 Business - codevolution.business@gmail.com
    Dynamic Routes in React Router
    React Router Tutorial
    React Router Tutorial for Beginners

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

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

    As usual, your tutorials are very helpful and easy to understand which we can implement right away to create our own projects.
    Thank you very much.

  • @BDCPT-amPhiHoang
    @BDCPT-amPhiHoang 3 месяца назад

    Your contents are fantastic. I really appreciate the level of detail ❣❣❣

  • @ahmed201130030
    @ahmed201130030 10 месяцев назад

    Man your tutorials are on another level. Thank you.

  • @mehedihasan-mr2ve
    @mehedihasan-mr2ve Год назад

    That's why I like you so much because you always hit to the specific need. Thank you so much!

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

    Excellent way of teaching. Keep it up.

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

    You are a true champ, but now,
    After 9:15 minutes, I really really REALLY wish
    That you would give your viewers much much MUCH more exercises during your videos.
    Even as small tasks for a better practice.

  • @user-ee8vo2wb3e
    @user-ee8vo2wb3e 11 месяцев назад

    Really helpful for beginners to learn react. Thank you,

  • @user-ov8jd9xq9u
    @user-ov8jd9xq9u 2 года назад +3

    Thank you for the clean and clear explanation! Subscribing!

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

    Thnx so much for this great playlist

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

    Amazing content. Thanks 👍

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

    Wait is over finally 😃

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

    Really good explanation. Thanks!

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

    Thx

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

    Thank you for the great lecture!🙏

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

    Thank you!!

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

    Thanks so much for the helpful content! I'm wondering where the dynamic route gets the value for userID that is user specific?

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

    thanku so much, it helps a lot

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

    thanks

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

    how can we render different component for different id's?? dynamic routes renders the same component for different userID..

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

      I have the same question... @codevolution please answer

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

    Great video man every other video explains dynamic routes but doesn't explain the placement of Routes components etc

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

    Here we are rendering same details for every user id. how it should be done if we want to render particular details for particular user id?

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

    How do i hide the users when i link to each specific user

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

    Awesome

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

    Anyone care to explain what is the path='*' and what is it used for, please ?

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

      It redirect to page not found page
      .i.e..url that isn't matched with mentioned paths.

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

      it is for non matching urls. example if you have configured /hi for Hi component so everytime when you hit /hi it wil navigate to Hi component but for not configured routes like /ko or something. in that case it is called unmatched routes so we use "*" to handle all the uncongured or unmacthed paths of url to show user that there is some error like 404

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

      Thank you guys, I'll leave this comment up in case anyone else has the same question as me.

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

    ez bro! ty!

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

    so niceee

  • @SandeepSaini-gi9ir
    @SandeepSaini-gi9ir 2 года назад

    I have a question if I wanna remove user 1 user 2 and user 3 and i wanna show only outlet replaced component then what can i do
    plz answer this anyone who knows

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

    How to add path user dynamically from Api

  • @GL-ie1jq
    @GL-ie1jq 2 года назад

    can't we use conditional rendering for this case ?

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

    How do i hide the users when i link to each user

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

    So nesting routes is for showing the nested route component inside its parent? So if you don’t want the nested route component to render inside a parent, but instead on its own standalone webpage you don’t nest it?
    What if I have a route path like /users and another like users/:id, if I want to render users/:id on its own page then I wouldn’t nest would I?

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

      If I have understood everything correctly so far, yes. If you want users/:id to be it's own page just add another normal Route for that and not a nested Route.

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

    i though you would teach how to do a dynamic route not explain it

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

    is it last video of this content ?

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

    @codevolution i am using dynamic routing but it is working with localhost , but in hosted application it is showing 404 for that url