What should I do if the page cannot be found when react refreshes?

藏色散人
Release: 2023-01-06 09:26:32
Original
1692 people have browsed it

Solution to the page not found when React refreshes: 1. Find and open the "app.jsx" file; 2. When defining the routing protocol in "app.jsx", pass "class App extends Component {render () {return (

..." Just define the code.

What should I do if the page cannot be found when react refreshes?

The operating environment of this tutorial: Windows 10 system, react18.0.0 version, Dell G3 computer.

How to refresh the page and not find it? What to do?

After react is deployed, an error message will be reported when refreshing the page. View cannot be found

After deploying the project this morning, you can click on the route to jump, but An error was reported when the corresponding route was refreshed.

Failed to lookup view "error" in views directory
Copy after login

The project can be used normally when it is local, but why does it report an error when it is refreshed after being deployed to the server? The corresponding view cannot be found?

First I checked the configuration file of node. Because after npm run build of the react project, I put the built file in the public file of node. In this way, after starting the backend node bin/www, node You can read the files in public. Then start to view the app.js file of node. The files are all configured

app.set('views', path.join(__dirname, 'views'));
app.engine('.html',require('ejs').__express);
// app.set('view engine', 'jade');
app.set('view engine', 'html');
app.use(logger('dev'));
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, 'public'))); //这句话就是express会读取public里面的静态文件
Copy after login

If there are no errors in the backend, start to view the files in the frontend

Since The routing path was wrong. I searched for routing-related information and found the answer. It was because I was using

BrowserRouter

Cause of error:

There is a difference between client-side routing and server-side routing. You can jump from the homepage to other routing addresses in the browser because it is rendered by the front-end itself. You have defined the corresponding route and script in React Router. The webpage is not refreshed to access the background, but JS dynamically changes the location.

When you refresh, you first access the background address, then the React code is loaded in the returned page, and finally executed in the browser; In other words, if 404 is reported at this time, it is because your background does not return HTML content for this route, and it is not possible to execute React Router.

Use HashRouter, do not use BrowserRouter, so that all requests The page index.html will be positioned, and no configuration is required on the server side.

Solution:

When defining the routing protocol in app.jsx, you can define it as follows:

import React, { Component} from 'react';
 import { HashRouter  as Router  } from "react-router-dom";
 import Nav from './component/Menu/Menu';
 import FootContent from './component/Footer/Footer';
 import MinContent from './component/content/mainContent';
 import {Layout} from 'antd';
   class App extends Component {
     render() {
       return (
        <Layout className="layout">
        <Router>
        <div>
        <Nav  />
        <MinContent />
        </div>
      </Router>
      <FootContent />
      </Layout>
       );
     }
   }
 
   export default App;
Copy after login

Recommended study: " react video tutorial

The above is the detailed content of What should I do if the page cannot be found when react refreshes?. 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
Popular Tutorials
More>
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!