


[Compilation and sharing] Some vue-router related interview questions (with answer analysis)
This article will summarize and share with you some vue-router related interview questions (with answer analysis), help you sort out the basic knowledge, and enhance the vue-router knowledge reserve. It is worth collecting, come and take a look!
The principle of vue-router
In a single-page application, switching between different components needs to be implemented through front-end routing .
Front-end routing
1.key is the path, value is the component, used to display the page content
2. Working process: when the browser's path changes , the corresponding component will be displayed. vue-router
’s routing function: Map components to routes and then render them
Mainly
How to change the URL without causing the page to refresh
How to detect the URL change [Related recommendations: vuejs video tutorial, web front-end development 】
The hash pattern of the route
hash is the
## in the URL ## and the following part, the URL after
# will not be sent to the server,
so changing the hash part in the URL will not cause the page to refresh- Window can monitor
onhashchange
event changes. When the hash changes, read the content after
#, match routing rules based on the information, and change the page routing by changing
window.location.hash.
Three ways to change the URL
- Change the URL through the browser forward and backward
- Change the URL through tags
- Change the URL through window.location
Advantages
- Only the front-end needs to configure the routing table, no back-end participation is required
- Good compatibility, all browsers can support it
- Changes in the hash value will not send requests to the backend, it is completely front-end routing
The hash value needs to be preceded by #, which does not comply with the url specification and is not beautiful
routing history mode - using the new pushState() and replaceState()## in the history interface of H5's history API
-
The#html5 # Method, used to add and modify records in the browsing history, change the page path,
so that the URL jump will not reload the page.
popstate - event is similar to the
hashchange
event, but the popstate event is somewhat different:
Only when making thebrowser popState will be called only when behavior
is triggered. It will be triggered when the user clicks the browser's back button and forward button, or uses JavaScript to call the History.back(), History.forward(), and History.go() methods. Advantages
Conforms to URL address specifications, no # is required, and it is more beautiful to use
- Disadvantages
When the user
manually enters the address or refreshes the page, a url request- will be initiated, and the backend needs to configure the index.html page The user cannot match the static resource, otherwise a 404 error will occur.
- The compatibility is relatively poor, and the new pushState() and
- replaceState( are used in the HTML5 History object. )
method requires the support of a specific browser.
What is the difference between $route and $router? $router is an instance object of VueRouter, representing the only router object for the entire application. Contains routing jump methods, hook functions, etc. $route is the current routing object, which represents the routing rules of this component. Each route will have a route object, which is a local object.
Vue-router parameters are passed in several ways, what are the differences?
How to specify the jump route | If no parameters are passed | Can parameters be passed without the required value | ||
---|---|---|---|---|
Path/params parameter | You must use name to specify the route | params is part of the route , If placeholders are configured, If this route has params parameters, but this parameter is not passed during the jump, the jump will fail or the page will have no content. |
Placeholders that are not included in the delivery path will not be displayed on the address bar and will be lost upon refresh |
query parameters |
Path? key1=val1 & key2=val2.... |
1. You can use name to specify the route 2. You can use path to specify the route |
query It is a parameter spliced after the url. It doesn’t matter if it is not available. | query will not
The above is the detailed content of [Compilation and sharing] Some vue-router related interview questions (with answer analysis). For more information, please follow other related articles on the PHP Chinese website!

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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Using ECharts in Vue makes it easy to add data visualization capabilities to your application. Specific steps include: installing ECharts and Vue ECharts packages, introducing ECharts, creating chart components, configuring options, using chart components, making charts responsive to Vue data, adding interactive features, and using advanced usage.

Question: What is the role of export default in Vue? Detailed description: export default defines the default export of the component. When importing, components are automatically imported. Simplify the import process, improve clarity and prevent conflicts. Commonly used for exporting individual components, using both named and default exports, and registering global components.

The Vue.js map function is a built-in higher-order function that creates a new array where each element is the transformed result of each element in the original array. The syntax is map(callbackFn), where callbackFn receives each element in the array as the first argument, optionally the index as the second argument, and returns a value. The map function does not change the original array.

In Vue.js, event is a native JavaScript event triggered by the browser, while $event is a Vue-specific abstract event object used in Vue components. It is generally more convenient to use $event because it is formatted and enhanced to support data binding. Use event when you need to access specific functionality of the native event object.

onMounted is a component mounting life cycle hook in Vue. Its function is to perform initialization operations after the component is mounted to the DOM, such as obtaining references to DOM elements, setting data, sending HTTP requests, registering event listeners, etc. It is only called once when the component is mounted. If you need to perform operations after the component is updated or before it is destroyed, you can use other lifecycle hooks.

There are two ways to export modules in Vue.js: export and export default. export is used to export named entities and requires the use of curly braces; export default is used to export default entities and does not require curly braces. When importing, entities exported by export need to use their names, while entities exported by export default can be used implicitly. It is recommended to use export default for modules that need to be imported multiple times, and use export for modules that are only exported once.

Vue hooks are callback functions that perform actions on specific events or lifecycle stages. They include life cycle hooks (such as beforeCreate, mounted, beforeDestroy), event handling hooks (such as click, input, keydown) and custom hooks. Hooks enhance component control, respond to component life cycles, handle user interactions and improve component reusability. To use hooks, just define the hook function, execute the logic and return an optional value.

onMounted in Vue corresponds to the useEffect lifecycle method in React, with an empty dependency array [], executed immediately after the component is mounted to the DOM.
