vue中的this.$ 都有什么


<router-link :to="{name:'home'}">
<router-link :to="{path:'/home'}">

<router-link :to="{name:'home', params: {id:1}}">

// params傳參數 (類似post)
// 路由配置 path: "/home/:id" 或者 path: "/home:id"
// 不配置path ,第一次可請求,刷新頁面id會消失
// 配置path,刷新頁面id會保留

// html 取參 $route.params.id
// script 取參 this.$route.params.id

<router-link :to="{name:'home', query: {id:1}}">

// query傳參數 (類似get,url后面會顯示參數)
// 路由可不配置

// html 取參 $route.query.id
// script 取參 this.$route.query.id

 

 

1、this.$router.push()   路由跳轉

this.$router.back()

this.$router.go()

this.$router.push({name:'home',query: {id:'1'}})
this.$router.push({path:'/home',query: {id:'1'}})

// html 取參 $route.query.id
// script 取參 this.$route.query.id

 

this.$router.push({name:'home',params: {id:'1'}}) // 只能用 name

// 路由配置 path: "/home/:id" 或者 path: "/home:id" ,
// 不配置path ,第一次可請求,刷新頁面id會消失
// 配置path,刷新頁面id會保留

// html 取參 $route.params.id
// script 取參 this.$route.params.id

3.  this.$router.replace() (用法同上,push)

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM