How to implement invalid routing prompts through vue-router in vue.js

亚连
Release: 2018-06-19 16:21:38
Original
1686 people have browsed it

As we all know, vue-router is the official routing plug-in of Vue.js. It is deeply integrated with vue.js and is suitable for building single-page applications. The following article mainly introduces you to vue- in vue.js. Friends who need information about how to implement invalid routing (404) friendly prompts can refer to it.

Preface

Everyone knows that for single-page applications, the official provides vue-router for routing jump processing, and recently it is doing A SPA based on vue-router wants to uniformly handle invalid routing (404) pages.

I really didn’t find any specific instructions in the official documents this time [face covering]

So this article is just an idea for my DIY, please forgive me =_=

In my understanding, vue-router matches the registered route according to the path. If it matches, it will load the corresponding component. If it does not match, it will reset (or clear) the corresponding router-view.

So, if we don’t do any processing, the final page will be blank.

So, can we make a fuss about route matching?

Route monitoring

In the component, you can get the current route fromthis.$route, then you can use Watch monitors routing changes. Monitoring all routing changes naturally falls on the root routing component (such as App.vue).

Invalid route detection

$route.matched contains the matching result of the current route. If it is empty, the current route is invalid.

Interface prompt

You can use conditional rendering. If the route is valid, the router-view will be rendered, and if the route is invalid, the prompt message will be rendered.

Demo

App.vue

 
Copy after login

The above is what I compiled for everyone, I hope It will be helpful to everyone in the future.

Related articles:

About how to merge Object values when using JavaScript

How to implement verification in Angular

How to implement table sorting in Angular

In Vue, there is something about how to use localstorage and sessionstorage

How jackson parses json string

How to read local files in js

The above is the detailed content of How to implement invalid routing prompts through vue-router in vue.js. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!