- 使用
location.href= /url
来跳转,简单方便,但是刷新了页面; - 使用
history.pushState( /url )
,无刷新页面,静态跳转; - 引进 router ,然后使用
router.push( /url )
来跳转,使用了diff
算法,实现了按需加载,减少了 dom 的消耗。其实使用 router 跳转和使用history.pushState()
没什么差别的,因为vue-router就是用了history.pushState()
,尤其是在history模式下。
Vue-router跳转和location.href有什么区别
最新推荐文章于 2024-09-01 16:33:08 发布
本文探讨了在JavaScript中,如何通过`location.href`进行页面刷新跳转与`history.pushState()`进行无刷新静态跳转的区别,重点介绍了VueRouter如何利用`pushState`和`diff`算法实现按需加载,减少DOM资源消耗。实际上,在VueRouter中,两者在history模式下作用相同。
摘要由CSDN通过智能技术生成