difference between html tag “/href” and navlink or Link

前端 未结 3 1895
暗喜
暗喜 2021-01-20 03:08

what is the difference between html tag \"/href\" and navlink provided by react-router to navigate the page? I can use both in order to navigate page to the different URL, s

3条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-20 04:12

    If we were to create links using anchor elements such as href, clicking on them would cause the whole page to reload. React Router provides a component to prevent that from happening. When clicking a , the URL will be updated and the rendered content will change without reloading the page. So basically to sum up this navlink/ link provided by react doesnt refresh the page while href refreshes the page

提交回复
热议问题