使用vue-router 來實現webapp的頁面跳轉,有時候須要傳遞參數,作法以下:
主要有如下幾個步驟:
(1) 設置好路由配置
history', router.map({
'/history/:deviceId/:dataId': {
name: '
component: { ... }
}
})
這裏有2個關鍵點:
a)給該路由命名,也就是上文中的 name: 'history',
b)在路徑中要使用在路徑中使用冒號開頭的數字來接受參數,也就是上文中的 :deviceId, :dataId;
(2)在v-link中傳遞參數;
history', params: { deviceId: 123, dataId:456 }}">history</a> <a v-link="{ name: '
這裏的123,456均可以改用變量。
好比該template所對應的組件有2個變量定義以下:
data: function() {
return {
deviceId:123,
dataId:456
}
}
此時上面那個v-link能夠改寫爲:
history', params: { deviceId: deviceId, dataId: dataId }}">history</a> <a v-link="{ name: '
(3)在router的目標組件上獲取入參
好比在router目標組件的ready函數中能夠這麼使用。
ready: function(){
console.log('deviceid: ' + this.$route.params.deviceId);
console.log('dataId: ' + this.$route.params.dataId);
}
————完————