logo

Nodejs Part5

 
 

中间件

express 中间件的调用流程

当一个请求到达Express的服务器后, 连续调用多个中间件, 对这次请求进行预处理

express中间件的格式

notion image

next函数的作用

next函数是多个中间件调用的关键
notion image
const nw = function(req,res,next) { console.log("这是一个中间件函数"); next(); } app.use(nw);

练习

npm init npm i express && npm i nodemon -D

index.js

const express = require("express"); const app = express(); const PORT = 8000; // 定义一个最简单的中间件函数 function mw(req, res, next) { console.log("This is a middleware function"); next(); }; // 注册成全局中间件 app.use(mw); app.use((req,res,next) => { console.log("This is the second middleware"); next(); }) app.get("/home",(req, res) => { console.log("Home Page"); res.send("home page"); }); app.get("/users", (req, res) => { console.log("users Page"); res.send("users page"); }) app.listen(PORT, () => console.log("server is running on http://127.0.0.1:8000"));
本章目录
    logo

    Follow Us

    linkedinfacebooktwitterinstagramweiboyoutubebilibilitiktokxigua

    We Accept

    /image/layout/pay-paypal.png/image/layout/pay-visa.png/image/layout/pay-master-card.png/image/layout/pay-airwallex.png/image/layout/pay-alipay.png

    地址

    Level 10b, 144 Edward Street, Brisbane CBD(Headquarter)
    Level 2, 171 La Trobe St, Melbourne VIC 3000
    四川省成都市武侯区桂溪街道天府大道中段500号D5东方希望天祥广场B座45A13号
    Business Hub, 155 Waymouth St, Adelaide SA 5000

    Disclaimer

    footer-disclaimerfooter-disclaimer

    JR Academy acknowledges Traditional Owners of Country throughout Australia and recognises the continuing connection to lands, waters and communities. We pay our respect to Aboriginal and Torres Strait Islander cultures; and to Elders past and present. Aboriginal and Torres Strait Islander peoples should be aware that this website may contain images or names of people who have since passed away.

    匠人学院网站上的所有内容,包括课程材料、徽标和匠人学院网站上提供的信息,均受澳大利亚政府知识产权法的保护。严禁未经授权使用、销售、分发、复制或修改。违规行为可能会导致法律诉讼。通过访问我们的网站,您同意尊重我们的知识产权。 JR Academy Pty Ltd 保留所有权利,包括专利、商标和版权。任何侵权行为都将受到法律追究。查看用户协议

    © 2017-2024 JR Academy Pty Ltd. All rights reserved.

    ABN 26621887572