【原】vue-router中params和query的區別

1.引入方式不一樣

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

params要用name來引入this

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
相關文章
相關標籤/搜索