Vue路由器更改url但不更改内容

Posted

技术标签:

【中文标题】Vue路由器更改url但不更改内容【英文标题】:Vue router changing the url but not the content 【发布时间】:2021-05-01 17:51:10 【问题描述】:

在歌曲组件中,我有一个其他专辑的列表,所以每当我点击一张专辑时,它都会将我重定向到 /songs/:id。每张专辑都有自己的 id。

这是在 Home 或任何其他组件中工作的,但每当我尝试从 /songs/1 到 /songs/2 时,它都不起作用。 URL 发生变化,但网页保持不变。

这是我的路由器 index.js 文件。

import Vue from 'vue'
import VueRouter from 'vue-router'
import Home from '../views/Home.vue'

Vue.use(VueRouter)

const routes = [
  
    path: '/',
    name: 'Home',
    component: Home,
  ,
  
    path: '/songs/:id',
    name: 'Songs',
    component: () => import('../views/Songs.vue')
  ,
  
    path: '/videos/:title/:index',
    name: 'Videos',
    component: () => import('../views/Videos.vue')
  
]

const router = new VueRouter(
  mode: 'history',
  routes
)

export default router

我在谷歌上搜索了一下,但似乎没有什么对我有用。

【问题讨论】:

【参考方案1】:
    将您的song.vue 导入index.js
import Songs from '../views/Songs.vue'
    检查您的../views/Songs.vue

yourlocalhost.url/mainapp/songs/1

其中 '1' 是一个名为 'id' 的参数(类似 /song/:id 的 URL),请尝试:

this.$route.params.id

【讨论】:

以上是关于Vue路由器更改url但不更改内容的主要内容,如果未能解决你的问题,请参考以下文章

Vue子路由器:url更改但显示父组件

反应路由器更改链接网址但不显示组件

反应路由器:链接更改网址但不加载组件

NuxtLink 正在更新 nuxt 3 应用程序中的路由,但不渲染内容

在反应路由器中,我无法更改视图,但只有 url 正在更改

Vue路由器更改页面时如何加载Jquery插件/脚本?