从 VUEJS 中的 url 获取 ID

Get the ID from the url in VUEJS

我目前正在学习 VUEJS,对此完全陌生。所以我需要帮助。我想要 URL 中的 ID,例如:

URL:

abc.net/dashboard/a/123456789

我想要 123456789 的文本格式。

这可以通过简单的方式轻松完成 javascript

const url = window.location.href;
const lastParam = url.split("/").slice(-1)[0];
console.log(lastParam);

如果您正在使用 vue-router 并且您加载的页面在 router.js 中定义。然后简单调用 this.$route.params

如果您正在使用 vue-router

,这可以为您提供指导
import Vue from 'vue';
import VueRouter from 'vue-router';
import DashboardComponent from "./path/DashboardComponent";

Vue.use(VueRouter);


export default new VueRouter({
    routes: [

        { path: '/dashboard/a/:id', component: DashboardComponent }//where :id is the dynamic id you wish to access from the browser
    ]
})

你的 DashboardComponent

<template>
   <div> 
       {{id}} //this will show the id in plain text
   </div>
</template>

<script>
    export default {
       name: 'Dashboard',

       data(){
           return {
              id: this.$route.params.id //this is the id from the browser
           }
       },
    }
</script>