首頁 > 軟體

Vue3使用vue-router如何實現路由跳轉與引數獲取

2022-03-30 16:00:23

vue-router實現路由跳轉與引數獲取

路由跳轉和傳參

import { defineComponent, onMounted, reactive, readonly, ref } from 'vue';
import { useRouter, useRoute } from 'vue-router';
export default defineComponent({
  name: 'Login',
  setup() {
    const router = useRouter(), route = useRoute();
    const submitForm = () => {
      formRef.value?.validate((valid) => {
        if (valid) {
          login({ strategy: 'local', ...ruleForm })
            .then((res: any) => {
            // 獲取引數和路由跳轉
              const redirect: string = route.query && route.query.redirect;
              if (redirect) {
                router.replace(redirect);
              } else {
                router.push('/home');
              }
              return true;
            })
            .catch((e) => {
              ...
            });
        } else {
         ...
          return false;
        }
      });
    };
    return { ..., submitForm };
  }
});

路由跳轉三種方法的總結

一、第一種

1、路由設定方式

{`在這裡插入程式碼片`
  path: '/detail/:id',
  name: 'detail',
  meta: { keepAlive: true },
  component: () => import('../pages/detail/index')
}

2、路由跳轉模式

this.$router.push(
  {
    path: `/detail/1`
  }
)

3、獲取引數方式

let detailId = this.$route.params.id

注意: params 傳參相當於是路由的一部分是必須傳的東西,經過驗證不傳頁面會跳轉到空白頁

該方式重新整理頁面id 不丟失

二、第二種

1、路由設定方式

{
  path: '/detail/:id',
  name: 'detail',
  meta: { keepAlive: true },
  component: () => import('../pages/detail/index')
}

2、路由跳轉模式

this.$router.push(
  {
    name: 'Detail',
    params: {
      id
    }
  }
)

3、獲取引數方式

let detailId = this.$route.params.id

注意:此方式傳參 路由設定方式中的 id 可以傳也可以不傳,不傳重新整理頁面id 會丟失

該方式重新整理頁面id 不丟失

三、第三種

1、路由設定方式

{
  path: '/detail',
  name: 'detail',
  meta: { keepAlive: true },
  component: () => import('../pages/detail/index')
}

2、路由跳轉模式

this.$router.push(
  {
    path: 'Detail',
    query: {
      id
    }
  }
)

3、獲取引數方式

let detailId = this.$route.query.id

注意:此方式傳參 路由設定方式中的 id 不能寫,因為寫了就是router 的一部分,這樣就會匹配不到, 此方式重新整理頁面id 不丟失

http://localhost:8080/#/detail?id=1

總結: params一旦設定在路由,params就是路由的一部分,如果這個路由有params傳參,但是在跳轉的時候沒有傳這個引數,會導致跳轉失敗或者頁面會沒有內容。

以上為個人經驗,希望能給大家一個參考,也希望大家多多支援it145.com。 


IT145.com E-mail:sddin#qq.com