search
HomeWeb Front-endJS TutorialVue routing dynamic redirects and navigation guards
Vue routing dynamic redirects and navigation guardsMar 19, 2018 am 11:08 AM
navigationRedirect

This article mainly shares an example of Vue's routing dynamic redirection and navigation guard. It has a good reference value and I hope it will be helpful to everyone. Let’s follow the editor to take a look, I hope it can help everyone. According to the official vue documentation, there are detailed examples for redirection, but there are not many descriptions of how to use dynamic redirection. The description of the redirection part is as follows:

Redirection

Redirection is also done through routes configuration. The following example redirects from /a to /b:


const router = new VueRouter({
 routes: [
 { path: '/a', redirect: '/b' }
 ]
})

Redirect target It can also be a named route:


const router = new VueRouter({
 routes: [
 { path: '/a', redirect: { name: 'foo' }}
 ]
})

or even a method that dynamically returns the redirect target:


const router = new VueRouter({
 routes: [
 { path: '/a', redirect: to => {
  // 方法接收 目标路由 作为参数
  // return 重定向的 字符串路径/路径对象
 }}
 ]
})`这里写代码片`

Examples of dynamic redirection are as follows:


 { path: '/dynamic-redirect/:id?',
  redirect: to => {
  const { hash, params, query } = to
  if (query.to === 'foo') {
   return { path: '/foo', query: null }
  }
  if (hash === '#baz') {
   return { name: 'baz', hash: '' }
  }
  if (params.id) {
   return '/with-params/:id'
  } else {
   return '/bar'
  }
  }
 }

First deconstruct the parameters, obtain hash, params, and query, and then make logical judgments based on the obtained values ​​and then redirect dynamically. The return value here is the path value, not the params value. It must be an existing path for route redirection. And this path cannot be itself, because as a redirection route, if it jumps to itself and continues to redirect, it will create an infinite loop.

The current requirements are as follows:

In order to prevent users from casually changing routing parameters and causing the page to crash, routing redirection is required to redirect parameters that do not meet the requirements to A canonical page. For example, the user clicks the button to jump to /list/1, but the user changes 1 and passes non-standard parameters to the page. It is hoped that the user can jump to the default standard page after changing the parameter value

The effect achieved by the above code is to get the routing parameters. If the user changes the page parameters that do not meet the specifications, the route will be redirected. So that the page can obtain the correct parameter values. The current effect is that if the user enters /1, it will enter the normal page /list/1. If the user enters /xsajsxoal, /5, /-5 and other non-compliant parameters, it will jump to /list/0.

Although there is no problem with the redirection logic, the problem still exists. What should the user do if they continue to change /list/1 to /list/xsjknxkja?

It can be seen that redirection is not suitable to solve this problem. At this time, the navigation guard of vue routing is used. The implementation of navigation guard is as follows:


 {
  path: '/:type',
  name: 'normal',
  component: index,
  beforeEnter (to, from, next) {
  if (/^[0-3]$/.test(to.params.type)) {
   next()
  } else {
   next('/0')
  }
  }
 }

The official document about navigation guard is described as follows:

As As its name suggests, the navigation guard provided by vue-router is mainly used to guard navigation by jumping or canceling. There are multiple opportunities to build into the route navigation process: globally, exclusive to a single route, or at the component level.

Remember that changes to parameters or queries will not trigger entry/leave navigation guards. You can respond to these changes by observing the $route object, or using the beforeRouteUpdate in-component guard.

You can use router.beforeEach to register a global beforeEach guard:


const router = new VueRouter({ ... })
router.beforeEach((to, from, next) => {
 // ...
})

When a navigation is triggered, the global beforeEach guard is called in the order of creation. Guards are parsed and executed asynchronously. At this time, the navigation is waiting until all guards are resolved.

Each guard method receives three parameters:

to: Route: The target routing object that is about to be entered

from: Route: The route that the current navigation is about to leave

next: Function: Be sure to call this method to resolve this hook. The execution effect depends on the calling parameters of the next method.

next(): Proceed to the next hook in the pipeline. If all hooks are executed, the navigation status is confirmed.

next(false): Interrupt the current navigation. If the browser's URL changes (perhaps manually by the user or by the browser's back button), the URL address will be reset to the address corresponding to the from route.

next(‘/’) or next({ path: ‘/’ }): Jump to a different address. The current navigation is interrupted and a new navigation is started.

next(error): (2.4.0+) If the parameter passed to next is an Error instance, the navigation will be terminated and the error will be passed to router.onError( ) registered callback.

Make sure to call the next method, otherwise the hook will not be resolved.

According to the requirements, you do not need to use the global guard, you only need to use the route exclusive guard, so you only need to add beforeEnter in the route and then determine whether it meets the parameter specifications. If so, use next() to enter the next hook. , otherwise use next('/') to jump to the target address.

Related recommendations:

Vue.js routing redirection

htmlHow to redirect the connection

Comprehensive analysis of redirection in Linux

The above is the detailed content of Vue routing dynamic redirects and navigation guards. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php域名重定向是什么?PHP重定向的几种方法总结php域名重定向是什么?PHP重定向的几种方法总结Mar 21, 2023 am 09:35 AM

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

理解网页重定向的常见应用场景并了解HTTP301状态码理解网页重定向的常见应用场景并了解HTTP301状态码Feb 18, 2024 pm 08:41 PM

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

PHP中的重定向教程PHP中的重定向教程Sep 01, 2023 pm 05:53 PM

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

Internet Explorer 打开 Edge:如何停止 MS Edge 重定向Internet Explorer 打开 Edge:如何停止 MS Edge 重定向Apr 14, 2023 pm 06:13 PM

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

PHP中的重定向PHP中的重定向May 24, 2023 am 08:25 AM

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

PHP域名重定向实例演示及效果展示PHP域名重定向实例演示及效果展示Mar 28, 2024 am 08:21 AM

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

解读HTTP状态码302:深入探究重定向和暂时跳转解读HTTP状态码302:深入探究重定向和暂时跳转Dec 26, 2023 am 08:09 AM

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

Vue Router 重定向功能与路由守卫的结合使用Vue Router 重定向功能与路由守卫的结合使用Sep 15, 2023 pm 12:48 PM

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

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.