本文主要是介绍带参跳转之后作为传参获取数据,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
<router-link :to="{path:'/credit',query:{couponId:item.id,}}">
<h5>{{item.time}} | {{item.title}}<i class="el-icon-right" style="float: right;"></i></h5>
</router-link>
接收方:
{{this.$route.query.couponId}}
作为传参请求数据
getDynamicInformation() { let $this = thisaxios.post(`xxx接口xxx`, {partyId:$this.$route.query.couponId,type: "happy",...this.informationPagination,}).then(({ data }) => {const { result } = data;console.log(result,"happy");this.informationList = result;console.log(this.informationList,"informationList")});},
这篇关于带参跳转之后作为传参获取数据的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!