


This article mainly introduces the implementation method of vue nested routing and 404 redirection, and analyzes the concepts, principles, implementation steps and related operation skills of vue.js nested routing and 404 redirection in the form of examples. Friends in need You can refer to the following
The example of this article describes the implementation method of vue nested routing and 404 redirection. Share it with everyone for your reference, the details are as follows:
Part 1: vue nested routing
What is nested routing?
Nested routing means that you can continue to use routing under a routed page. Nesting means routing in routing. For example, in vue, if we do not use nested routing, there will only be one <router-view></router-view>
, but if we use it, then there will be <router-view> in a component. </router-view>
, this also constitutes nesting.
Why use nested routing?
For example, in a page, there are three buttons in the upper part of the page, and the lower part displays different content based on clicking different buttons, then we can use this component The lower part is regarded as a nested route, which means that there needs to be another <router-view></router-view>
below this component. When I click on different buttons, their The components pointed to by router-link will be rendered into this <router-view></router-view>
.
How is the official website introduced?
Every time we talk about the official website, we have to talk about Baidu. Never use Baidu search. .
# The official website cited this picture, the intention is good, but the description is too cumbersome. Make a complaint. .
This is a good application interface in real life, usually composed of multiple layers of nested components. Similarly, each dynamic path segment in the URL also corresponds to each layer of nested components according to a certain structure. As shown above.
That is, user represents the user page, and user can be regarded as a single page in vue. For a user, there must be a user. The foo (Xiao Ming, Xiao Hong) here represents a User, the profile here can be understood as a personal homepage, and the posts here can be understood as articles published by this person, and the title may not change, for example, whether you switch to the articles published by this person, or switch to this person's personal homepage , we all want to display the same thing at the top, and what we change when switching is the lower part. We can use
With the help of vue-router, this relationship can be easily expressed using nested routing configuration.
<p id="app"> <router-view></router-view> </p>
const User = { template: ` <p class="user"> <h2 id="User-nbsp-nbsp-route-params-id-nbsp">User {{ $route.params.id }}</h2> <router-view></router-view> </p> ` } const router = new VueRouter({ routes: [ { path: '/user/:id', component: User, children: [ { // 当 /user/:id/profile 匹配成功, // UserProfile 会被渲染在 User 的 <router-view> 中 path: 'profile', component: UserProfile }, { // 当 /user/:id/posts 匹配成功 // UserPosts 会被渲染在 User 的 <router-view> 中 path: 'posts', component: UserPosts }, // 当 /user/:id 匹配成功, // UserHome 会被渲染在 User 的 <router-view> 中 { path: '', component: UserHome }, // ...其他子路由 ] } ] })
OK! This is roughly nested routing! Among them, the first piece of code is to put <router-view></router-view>
in the file. This is the top-level exit, which renders the components matched by the advanced route.
From the routing configuration, we can see: When the path is /user/Xiaoming or /user/小红, the User will be rendered into the page, and this rendering is the top-level route. (:id is Xiao Ming and Xiao Hong,). Then there is a nested route in this page. Of course, if the URL is /user/Xiao Ming, then this secondary route will not display anything. If we want even if it is just /user/Xiao Ming, we have to render something. , then we can set the route corresponding to path: "", so that even /user/Xiao Ming can display more.
If we want to see Xiao Ming's personal homepage, it is /user/Xiao Ming/profile. Then the UserProfile component will be rendered into this secondary route.
If we want to read the articles published by Xiao Ming, it is /user/Xiao Ming/posts. At this time, the UserPost component will be rendered into this secondary route, which is also the secondary route.
In fact, there are only so many concepts, isn’t it very simple!
But you also need to pay attention to the following points:
1. As can be seen from the above code: In the component, we can pass $route.params .id
to get Xiao Ming in user/Xiao Ming/post, so that we can make personalized settings.
2. Nested paths starting with / will be regarded as the root path, which allows you to fully use nested components without setting nested paths.
That is to say: In the above code, we write path: "profile" under children, which is equivalent to splicing it into /user/:id/profile. Of course, We can also write it directly as path: "/user/:id/profile". The final result is the same, but I personally think that the latter representation method can clearly observe the structure. If there are too many nesting levels, errors may occur.
Part 2: 404 Redirect
有时,我们可能会输入错的 url, 或者不再存在等各种原因导致其不再能被访问,那么我们就可以对于这种情况进行重定向。 很简单,只要在路由中添加下面的代码就可以了:
{ path: "*", redirect: "/" }
即对于所有的(*代表所有)错误页面,我们都可以重定向到 "/" 中。
相关推荐:
The above is the detailed content of Analysis of vue nested routing and 404 redirection implementation methods. For more information, please follow other related articles on the PHP Chinese website!

PHP域名重定向是一种重要的网络技术,它是将用户访问的不同域名重定向到同一个主域名下的方法。域名重定向可以解决网站SEO优化、品牌宣传以及用户访问等问题,也可以防止恶意域名被滥用的问题。在本文中,我们将介绍PHP域名重定向的具体方法和原理。

重定向允许您将客户端浏览器重定向到不同的URL。您可以在切换域、更改网站结构或切换到HTTPS时使用它。在本文中,我将向您展示如何使用PHP重定向到另一个页面。我将准确解释PHP重定向的工作原理并向您展示幕后发生的情况。通过免费在线课程学习PHP如果您想学习PHP,请查看我们的PHP基础知识免费在线课程!PHP基础知识杰里米·麦克皮克2021年10月29日基本重定向如何工作?在我们深入了解PHP重定向的细节之前,让我们快速了解一下HTTP重定向到底是如何工作的。看一下下图。让我们了解一下上面的屏

掌握HTTP301状态码的含义:网页重定向的常见应用场景随着互联网的迅猛发展,人们对网页交互的要求也越来越高。在网页设计领域,网页重定向是一种常见且重要的技术,通过HTTP301状态码来实现。本文将探讨HTTP301状态码的含义以及在网页重定向中的常见应用场景。HTTP301状态码是指永久重定向(PermanentRedirect)。当服务器接收到客户端发

长期以来,InternetExplorer的失宠一直不是秘密,但随着Windows11的到来,现实开始了。Edge将来不再有时取代IE,它现在是微软最新操作系统中的默认浏览器。目前,您仍然可以在Windows11中启用InternetExplorer。但是,IE11(最新版本)已经有了一个正式的退役日期,即2022年6月15日,时间在流逝。考虑到这一点,您可能已经注意到InternetExplorer有时会打开Edge,而您可能不喜欢它。那么为什么会这样呢?在

重定向是Web开发中经常使用的一种技术,它可以让我们将用户从当前的URL地址重定向到另一个URL地址。在PHP中,重定向是通过header()函数实现的。header()函数可以输出HTTP头信息,包括重定向信息。我们可以通过使用header()函数,将用户重定向到另一个URL地址,如下所示:header("Location:http://www.exam

PHP域名重定向是网站开发中常用的技术之一,通过域名重定向可以实现让用户访问一个网址自动跳转到另一个网址,从而实现网站的流量导向、品牌宣传等目的。下面将以一个具体的实例来演示PHP域名重定向的实现方法,并展示效果。创建一个简单的PHP文件,命名为redirect.php,代码如下:

HTTP状态码是web服务器向浏览器返回的一种状态信息,它以三位数字的形式表示。其中,状态码302代表的是重定向,也称为临时跳转。本文将深入解析HTTP状态码302,探讨其原理与应用。一、概述重定向是HTTP协议中的一个重要概念。当浏览器向服务器发送请求时,服务器可能会返回一个重定向状态码,通知浏览器需要对当前的请求进行重定向操作,即将请求的资源地址转移到另

VueRouter是Vue.js官方的路由管理器。它允许我们通过定义路由、创建嵌套路由和添加路由守卫等功能,来构建单页面应用程序(SPA)。在VueRouter中,重定向功能和路由守卫的结合使用可以实现更灵活的路由控制和用户导航。重定向功能允许我们在用户访问一个指定路径时,将其重定向到另一个指定路径。这在处理用户输入错误或统一路由跳转时非常有用。例如,当


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6
Visual web development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
