router-link传递参数
Posted wayneliu007
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了router-link传递参数相关的知识,希望对你有一定的参考价值。
有个功能:
依据传入值,跳到产品详情页,但是详情页的内容依据传入值来相应变化。
如果使用点击事件@clic来实现,则有三个重复的跳转代码。
避免多次定义重复函数,可以使用router-link 传参数来函数该功能。
带参数跳转:
<div style="width: 40%;height: 180px;border: 1px saddlebrown solid;margin: 30px auto;border-radius:5px;" v-for="pro in Products"> <router-link :to="{name:‘Detail‘,params:{‘nameCN‘:pro.nameCN}}"> <div style="float: left;width: 220px;height:116px;margin:20px 50px 20px 20px " > <p class="font_7" style="font-size: 17px">{{pro.nameCN}}</p> <p class="font_7" style="font-size: 15px">{{pro.nameEN}}</p> <br> <hr> <div style="margin-top: -15px"> <span class="font_4" style="margin: 0 10px 20px 10px;"> <span style="color: rgb(255, 204, 0);font-size: 40px;">+</span><span style="margin: 0 0 20px 10px;display: inline-block">详细介绍</span> </span> </div> </div> <div v-if="pro.specs.length > 0" v-for="spec in pro.specs" style="margin-top: 15px;"> <p class="font_8" style="font-size: 14px;">{{spec}}</p> </div> </router-link> </div>
到达Detail页获取参数:
let name = this.$route.params.nameCN;
以上是关于router-link传递参数的主要内容,如果未能解决你的问题,请参考以下文章