详解Vue中一种简易路由传参办法
程序员文章站
2022-09-08 12:29:35
情景模拟:
a页面中,有一些div是根据a中的book数据通过v-for生成的,比如item。
并且点击会根据路由跳转到b页面。
而跳转到b页面后,我需要a中的ite...
情景模拟:
a页面中,有一些div是根据a中的book数据通过v-for生成的,比如item。
并且点击会根据路由跳转到b页面。
而跳转到b页面后,我需要a中的item。
<div v-for="(item,index) in book" :class='{on:$route.path === `/${item.to}/`}' @click='toother(item.to)'> </div>
toother(to,run) { if(this.$route.path!==`/${to}`){ location.hash = to; } },
解决办法:
在a中的click事件中将item传进toother()函数中,再根据路由传入
toother(to,run) { if(this.$route.path!==`/${to}`){ location.hash = to+'?'+run.key; } },
即将要传的参数添加在原本url加?之后,这样既不影响路由,也比较方便。
如图1所示:
如图2,这样子我们便可以在 this.$route 的fullpath中拿到a中我们需要传递的参数了。
具体要拿还需要进行字符串的分割取出所需的信息,但是这样子会很繁琐,我们只需多加几个字,
在你的参数前加上'sth'=
toother(to,run) { if(this.$route.path!==`/${to}`){ location.hash = to+'?'+'book_key='+run.key; } },
你就会发现你可以在query中拿到这些个数据
并且是一个object的形式
简直不能更完美!
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。