您好,登錄后才能下訂單哦!
小編給大家分享一下vue.js進行頁面跳轉的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
vue跳轉頁面的方法
1:router-link跳轉
<!-- 直接跳轉 --> <router-link to='/testDemo'> <button>點擊跳轉2</button> </router-link> <!-- 帶參數(shù)跳轉 --> <router-link :to="{path:'testDemo',query:{setid:123456}}"> <button>點擊跳轉1</button> </router-link> <router-link :to="{name:'testDemo',params:{setid:1111222}}"> <button>點擊跳轉3</button> </router-link>
2:this.$router.push()
<template> <p id='test'> <button @click='goTo()'>點擊跳轉4</button> </p> </template> <script> export default{ name:'test', methods:{ goTo(){ //直接跳轉 this.$router.push('/testDemo'); //帶參數(shù)跳轉 this.$router.push({path:'/testDemo',query:{setid:123456}}); this.$router.push({name:'testDemo',params:{setid:111222}}); } } } </script>
params和query傳參數(shù)有什么不一樣??在地址欄中可以看到,params傳參數(shù)時,地址欄中看不到參數(shù)的內(nèi)容,有點像ajax中的post傳參,query傳參數(shù)時,地址欄中可以看到傳過來的參數(shù)信息,有點像ajax的個體傳參
如果單獨傳setId一個參數(shù)的時候,地址欄中的地址如下圖:
第一種方式:path - query 傳參
第二種方式:name - params傳參數(shù)
但是一般情況下,傳參數(shù)是傳遞一個對象,當傳遞的是一個對象的時候,地址欄中的地址如下圖:
第一種方式:path - query 傳參
第二種方式:name - params傳參數(shù)
<p id="app"> <p v-show="isShow">微風輕輕的吹來,帶來了一絲絲涼意</p> <p> <button type="button" v-on:click="show(1)">顯示</button> <button type="button" v-on:click="show(0)">隱藏</button> </p> </p> var vm = new Vue({ el: '#app', data: { isShow:true }, methods:{ show:function(type){ if(type){ this.isShow = true; }else{ this.isShow = false; } } } })
看完了這篇文章,相信你對vue.js進行頁面跳轉的方法有了一定的了解,想了解更多相關知識,歡迎關注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。