Vue.js是一款優(yōu)秀的前端框架,已經(jīng)成為了后臺管理系統(tǒng)和單頁面應(yīng)用的首選框架。在Vue.js中,我們經(jīng)常需要獲取當前頁面的路由path,下面介紹三種獲取path的方法。
方法一:this.$route.path
this.$route.path
通過Vue.js提供的$route對象,我們可以獲取當前路由對應(yīng)的路徑。
方法二:this.$router.currentRoute.path
this.$router.currentRoute.path
除了使用$route對象外,我們也可以直接訪問$router對象的currentRoute屬性,從而獲取當前路由的路徑。
方法三:this.$route.params.id
this.$route.params.id
如果我們需要獲取含有參數(shù)的路由路徑,例如"/user/:id",我們可以通過$route對象的params屬性獲取對應(yīng)參數(shù)。這里以"/user/:id"為例,通過this.$route.params.id即可獲取到當前路由中的id參數(shù)。
上一篇php swoole性能
下一篇vue獲取php