vue-router与location.href的用法区别
vue-router与location.href的用法区别①vue-router使用pushState进行路由更新,静态跳转,页面不会重新加载;location.href会触发浏览器,页面重新加载一次②vue-router使用diff算法,实现按需加载,减少dom操作③vue-router是路由跳转或同一个页面跳转;location.href是不同页面间跳转;④vue-router是异步加载thi
·
vue-router与location.href的用法区别
①vue-router使用pushState进行路由更新,静态跳转,页面不会重新加载;location.href会触发浏览器,页面重新加载一次
②vue-router使用diff算法,实现按需加载,减少dom操作
③vue-router是路由跳转或同一个页面跳转;location.href是不同页面间跳转;
④vue-router是异步加载this.$nextTick(()=>{获取url});location.href是同步加载
其他用法
this.$router.push({path:'/fillinformation',
query: {applicationNo: this.applicationNo,contractNo:this.contractNo}})
}
this.$route.query.applicationNo//页面跳转后获取携带参数applicationNo参数
//此用法参数会展示在跳转地址上---图一
this.$router.push({
name: 'clientdetail',
params: {
clientCode: clientCode,
clientType: clientType
}
})
this.$route.params.clientCode//页面跳转后获取携带参数clientCode
//此用法参数不会展示在跳转地址--图二
图一
图二
使用location.href实现页面div块的快速定位
location.href='#divClass'//<div id = "divClass"></div>,通过事件直接跳转到该dev
location.href可直接获取当前路径
parent.location.href跳转至上一层页面
top.location.href跳转至最外层页面
更多推荐
已为社区贡献3条内容
所有评论(0)