我在 SPA 中使用 Vue 和 Vue 路由器。在视图组件中,我在资源库中查询资源。如果找不到资源,我想在保留 URL 的同时显示 404 页面。
即,如果我访问/foo/non-existant-id
,则应显示 404 页面来代替foo
资源的显示页面。
为清楚起见,这是我的路由器地图:
router.map({
'/foo/:id': {name: 'foo-show', component: FooShowPage},
// Utilities
'/': { name: 'home', component: HomePage },
'*': { name: '404', component: NotFoundPage }
})
在我的FooShowPage
我执行以下操作:
ready () {
// fetch the foo from the repo (app.foos)
app.foos.fetchById(this.$route.params.id).then(foo => {
this.foo = foo
}).catch(e => {
// foo is not found show a 404 page
// using this.$route.router.go({name: '404'}) does not work as route is a wildcard
console.warn(e)
})
}
本质上,它可能涉及用 替换FooShowPage
路由器视图中的NotFoundPage
,或重定向到定义的 404 页面,同时保持浏览器历史记录不变。