码迷,mamicode.com
首页 > 其他好文 > 详细

【原】vue-router中params和query的区别

时间:2019-12-24 12:11:55      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:col   color   query   push   path   host   amp   param   code   

1.引入方式不同

query要用path来引入
this.$router.push({
    path: ‘test‘,
    query: {
        type: 2,
        detail: ‘哈哈‘
    }
})

params要用name来引入

this.$router.push({
    name: ‘test‘,
    query: {
        type: 2,
        detail: ‘哈哈‘
    }
})

 

2.url不同

query在url中显示参数
http://localhost:8080/detail?type=0&detail=哈哈
params在url中不显示参数
http://localhost:8080/detail

 





【原】vue-router中params和query的区别

标签:col   color   query   push   path   host   amp   param   code   

原文地址:https://www.cnblogs.com/PeunZhang/p/12090469.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!