This article brings you an introduction to the Express4.x middleware features (code examples). It has certain reference value. Friends in need can refer to it. I hope it will be useful to you. Helps.
Express application is basically a series of middleware function calls. The middleware is executed in a pipeline. You can imagine a real pipe carrying water. Water is pumped in at one end and then passes through various gauges and valves before reaching its destination. An important part of this analogy is the order issue. The effect is different if you put the pressure gauge before the valve than after it. Likewise, if you have a valve that injects something into the water, everything "downstream" of the valve will contain this newly added ingredient. In an Express program, middleware is inserted into the pipeline by calling app.use.
Before Express 4.0, this pipeline was a bit complicated because the router had to be connected explicitly. Depending on where you connect to the router, the routing can come in out of order, which makes the order of the pipeline even less clear when you mix in middleware and route handlers. In Express 4.0, middleware and route handlers are called in the order they are connected, making the order clearer.
Route processors (app.get, app.post, etc., often collectively referred to as app.VERB) can be thought of as middleware that only handles specific HTTP verbs (GET, POST, etc.). Similarly, middleware can also be thought of as a route processor that can handle all HTTP verbs (basically equivalent to app.all, which can handle any HTTP verb; there will be subtle differences for special verbs such as PURGE, but for ordinary As far as predicates are concerned, the effect is the same).
The first parameter of the route processor must be a path. If you want a route to match all paths, just use /*. Middleware can also take a path as the first parameter, but it is optional (if this parameter is omitted, it will match all paths as if /* was specified)
Route processors and middleware There is a callback function in the parameters of the file. This function has 2, 3 or 4 parameters (technically it can also have 0 or 1 parameters, but these forms are meaningless). If there are 2 or 3 parameters, the first two parameters are the request and response objects, and the third parameter is the next function. If there are 4 parameters, it becomes an error handling middleware, and the first parameter becomes the error object, followed by the request, response, and next objects. If next() is not called, the pipeline will be terminated and there will be no further processing by processors or middleware.
If you do not call next(), you should send a response to the client (res.send, res.json, res.render, etc.); if you do not do this, the client will be hung and Eventually resulting in a timeout. If next() is called, it is generally not appropriate to send a response to the client. If you send it, subsequent middleware or route handlers in the pipeline will still execute, but any responses they send will be ignored.
var express = require('express')
var app = express()
var requestTime = function (req, res, next) {
req.requestTime = Date.now()
console.log(req.requestTime );
next()
}
var requestUser = function (req, res, next) {
console.log('welcome');
next()
}
app.use(requestTime)
app.get('/', function (req, res) {
console.log('//welcome');
var responseText = 'Hello World!<br>'
responseText += '<small>Requested at: ' + req.requestTime + '</small>'
res.send(responseText)
})
app.use(requestUser)
app.listen(3000)
Access 127.0.0.1:3000 output time and //welcome will not execute requestUser middleware code 1552630945571//welcome
The above is the detailed content of Introduction to Express4.x middleware features (code example). For more information, please follow other related articles on the PHP Chinese website!
Python vs. JavaScript: Community, Libraries, and ResourcesApr 15, 2025 am 12:16 AMPython and JavaScript have their own advantages and disadvantages in terms of community, libraries and resources. 1) The Python community is friendly and suitable for beginners, but the front-end development resources are not as rich as JavaScript. 2) Python is powerful in data science and machine learning libraries, while JavaScript is better in front-end development libraries and frameworks. 3) Both have rich learning resources, but Python is suitable for starting with official documents, while JavaScript is better with MDNWebDocs. The choice should be based on project needs and personal interests.
From C/C to JavaScript: How It All WorksApr 14, 2025 am 12:05 AMThe shift from C/C to JavaScript requires adapting to dynamic typing, garbage collection and asynchronous programming. 1) C/C is a statically typed language that requires manual memory management, while JavaScript is dynamically typed and garbage collection is automatically processed. 2) C/C needs to be compiled into machine code, while JavaScript is an interpreted language. 3) JavaScript introduces concepts such as closures, prototype chains and Promise, which enhances flexibility and asynchronous programming capabilities.
JavaScript Engines: Comparing ImplementationsApr 13, 2025 am 12:05 AMDifferent JavaScript engines have different effects when parsing and executing JavaScript code, because the implementation principles and optimization strategies of each engine differ. 1. Lexical analysis: convert source code into lexical unit. 2. Grammar analysis: Generate an abstract syntax tree. 3. Optimization and compilation: Generate machine code through the JIT compiler. 4. Execute: Run the machine code. V8 engine optimizes through instant compilation and hidden class, SpiderMonkey uses a type inference system, resulting in different performance performance on the same code.
Beyond the Browser: JavaScript in the Real WorldApr 12, 2025 am 12:06 AMJavaScript's applications in the real world include server-side programming, mobile application development and Internet of Things control: 1. Server-side programming is realized through Node.js, suitable for high concurrent request processing. 2. Mobile application development is carried out through ReactNative and supports cross-platform deployment. 3. Used for IoT device control through Johnny-Five library, suitable for hardware interaction.
Building a Multi-Tenant SaaS Application with Next.js (Backend Integration)Apr 11, 2025 am 08:23 AMI built a functional multi-tenant SaaS application (an EdTech app) with your everyday tech tool and you can do the same. First, what’s a multi-tenant SaaS application? Multi-tenant SaaS applications let you serve multiple customers from a sing
How to Build a Multi-Tenant SaaS Application with Next.js (Frontend Integration)Apr 11, 2025 am 08:22 AMThis article demonstrates frontend integration with a backend secured by Permit, building a functional EdTech SaaS application using Next.js. The frontend fetches user permissions to control UI visibility and ensures API requests adhere to role-base
JavaScript: Exploring the Versatility of a Web LanguageApr 11, 2025 am 12:01 AMJavaScript is the core language of modern web development and is widely used for its diversity and flexibility. 1) Front-end development: build dynamic web pages and single-page applications through DOM operations and modern frameworks (such as React, Vue.js, Angular). 2) Server-side development: Node.js uses a non-blocking I/O model to handle high concurrency and real-time applications. 3) Mobile and desktop application development: cross-platform development is realized through ReactNative and Electron to improve development efficiency.
The Evolution of JavaScript: Current Trends and Future ProspectsApr 10, 2025 am 09:33 AMThe latest trends in JavaScript include the rise of TypeScript, the popularity of modern frameworks and libraries, and the application of WebAssembly. Future prospects cover more powerful type systems, the development of server-side JavaScript, the expansion of artificial intelligence and machine learning, and the potential of IoT and edge computing.


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

Zend Studio 13.0.1
Powerful PHP integrated development environment

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

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






