📜  如何在 Express 中添加 404 错误页面?

📅  最后修改于: 2022-05-13 01:56:28.095000             🧑  作者: Mango

如何在 Express 中添加 404 错误页面?

Express.js 是一个强大的 node.js 框架。该框架的主要优点之一是定义不同的路由或中间件来处理客户端的不同传入请求。在本文中,我们将讨论如何使用 express 服务器添加 404 错误页面,即未找到。 404 是状态码,表示在服务器中找不到。

安装模块:使用以下命令安装所需的模块。

npm install express

项目结构:它看起来像这样。

index.js
// Requiring module
const express = require("express")
const app = express()
  
// Handling GET /hello request
app.get("/hello", (req, res, next) => {
    res.send("This is the hello response");
})
  
// Handling non matching request from the client
app.use((req, res, next) => {
    res.status(404).send(
        "

Page not found on the server

") })    // Server setup app.listen(3000, () => {     console.log("Server is Running") })


使用以下命令运行index.js文件:

node index.js

输出:现在打开浏览器并转到http://localhost:3000/ ,服务器将响应 no page found。