


This article mainly introduces the detailed explanation of the reasons and solutions for the page failure to render in the History mode of Vue routing. It is of great practical value. Friends in need can refer to
Causes of routing in History mode under Vue Reasons why the page cannot be rendered
It is very simple to create a single-page application with Vue.js vue-router. Using Vue.js, we can already compose applications by combining components. When you want to add vue-router, what we need to do is to map the components to routes, and then tell vue-router in where to render them.
The URL of a generally developed single-page application will have a hash pattern with the # symbol, because the entire application itself has only one HTML, and the rest is rendered through the router. If it is due to business needs or simply feels that the # sign is unsightly, you can use the history mode. Simply put, add the following line of code to the router's configuration file How to solve the problem that the page cannot be rendered in Vue routing History mode:
history: mode
Yes, like this There will no longer be a # sign in the URL, and you will find that the entire address bar has returned to what you are familiar with. However, the next introduction is very important. Maybe many newcomers will encounter one or two pitfalls like this. …
The page cannot be rendered
Here is a project I wrote as an example. When I turned on the history mode, I did not do any processing on the routing. Everything is normal in the Dev stage, but after packaging, if you visit the project path:
sdp.driver.com/driver/
, you will find that the page is blank, but the static files can be referenced normally. , because the module in YII is used, so in addition to the domain name, it also contains the driver module name. Generally, the projects created by many people are placed under the root directory, that is, in a form such as
sdp.driver.com
, no problem. But if the module is configured or placed under a subfolder, problems will occur. In fact, this is because the router cannot find the components in the path, so it cannot be rendered. Just modify the How to solve the problem that the page cannot be rendered in Vue routing History mode in the router and add your project name to each path, and you will be successful.
The final page effect:
##404 error
at In History mode, if you access the path directly through the address bar, a 404 error will occur. This is because this is a single-page application (nonsense)... In fact, it is because the history.pushState API is called, so all operations such as jumps are It is implemented through the router. Solving this problem is very simple. You only need to configure in the background that if the URL does not match any static resources, it will jump to the default index.html. The specific configuration is as follows: Apache<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.html$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.html [L] </IfModule>nginx
location / { try_files $uri $uri/ /index.html;}
Node.js (Express)
About each time The problem of refreshing the page every time you click on a link
As we all know, developing single-page applications is because of the silky smooth experience. If the page is refreshed every time you click...Vue.prototype.router = router;The following methods will be used to control jumps in the future
this.router.push('driver/service');The above is the entire content of this article. I hope it will be helpful to everyone's learning. For more related content, please pay attention to the PHP Chinese website! Related recommendations:
How VueJS components interact and verify through props
How to solve the problem of vuex in the parent component The method update state subcomponent cannot be updated and rendered in time
The above is the detailed content of How to solve the problem that the page cannot be rendered in Vue routing History mode. For more information, please follow other related articles on the PHP Chinese website!

vue中props可以传递函数;vue中可以将字符串、数组、数字和对象作为props传递,props主要用于组件的传值,目的为了接收外面传过来的数据,语法为“export default {methods: {myFunction() {// ...}}};”。

本篇文章带大家聊聊vue指令中的修饰符,对比一下vue中的指令修饰符和dom事件中的event对象,介绍一下常用的事件修饰符,希望对大家有所帮助!

如何覆盖组件库样式?下面本篇文章给大家介绍一下React和Vue项目中优雅地覆盖组件库样式的方法,希望对大家有所帮助!

react与vue的虚拟dom没有区别;react和vue的虚拟dom都是用js对象来模拟真实DOM,用虚拟DOM的diff来最小化更新真实DOM,可以减小不必要的性能损耗,按颗粒度分为不同的类型比较同层级dom节点,进行增、删、移的操作。


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

SublimeText3 Linux new version
SublimeText3 Linux latest version

WebStorm Mac version
Useful JavaScript development tools

Dreamweaver CS6
Visual web development tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version
Chinese version, very easy to use
