vue路由传参

路由传参

1. params:

 

 

 

   2. query:

 

 

 

Paramsquery区别

 

 

 

追问 指定跳转方式能不能交换,如:params传参指定pathquery传参指定name

答案 params只能用namequery既可以指定name,也可以指定path

 

<router-link :to='{name: "Test1", params: {id: "111"}}'>test1</router-link>
<!--无法匹配路由-->
<!--<router-link :to='{path: "/hello/test1", params: {id: "111"}}'>test1</router-link>-->
<router-link :to='{name: "Test2", query: {id: "222"}}'>test2</router-link>
<router-link :to='{path: "/hello/test2", query: {id: "222"}}'>test2</router-link>

 

posted @ 2020-06-23 18:01  孙同学你好  阅读(57)  评论(0编辑  收藏  举报