hash mode (default)Working principle: Monitor the hash value changes of the web page—> onhashchange event, get location.hash Use a hash of the URL to simulate a full URL, so the page doesn't reload when the URL changes. It will give the user the feeling that the web page has been redirected, but in fact it has not been redirected. Mainly used in single page applications (SPA) //Simulation principle//Monitor page hash value changes window.onhashchange = function(){ // Get the hash value of the current url const _hash = location.hash // Display different content according to different hash values switch(_hash) { case '/#a': document.querySelector('#app').innerHTML = '<h1>I am page 1 content</h1>' break; case '/#b': document.querySelector('#app').innerHTML = '<h1>I am page 2 content</h1>' break; case '/#c': document.querySelector('#app').innerHTML = '<h1>I am page 3 content</h1>' break; } } history modeWorking principle: Mainly use history.pushState() API to change the URL without refreshing the page. There are actually five modes that can change the URL without refreshing the page.
Need backend configuration support. If you enter a URL that does not exist, the backend configuration needs to be used as a "backup configuration". Instead of returning a 404, it returns to the home page. Enable history mode const router = new VueRouter({ mode: 'history', routes: [...] }) The above is the detailed content of the two modes of Router routing in Vue, hash and history. For more information about the Router routing mode in Vue, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: A brief analysis of MySQL locks and transactions
>>: Analysis of the Linux input subsystem framework principle
1. HTML Overview htyper text markup language Hype...
Nine simple examples analyze the use of HTML form...
Table of contents Select Structure Loop Structure...
Table of contents 1. Overview 1. Explain statemen...
The Spring Boot project uses docker containers, j...
Table of contents Problems with resource manageme...
Preface The mini program has a very convenient AP...
I don't know when it started, but every time ...
Table of contents 1. Introduction to calculator f...
Exposing network ports In fact, there are two par...
MySQL official website: https://www.mysql.com/dow...
1. Set and change the root password Check whether...
Create Group Grouping is established in the GROUP...
Recently, the company has begun to evaluate all s...
Scenario 1. Maintain a citizen system with a fiel...