Browse Source

docs/tutorial/middleware.md: new section added: HTTP Middleware

pull/13525/head
alv2017 2 weeks ago
parent
commit
96dc79e84d
  1. 15
      docs/en/docs/tutorial/middleware.md

15
docs/en/docs/tutorial/middleware.md

@ -65,11 +65,22 @@ Here we use <a href="https://docs.python.org/3/library/time.html#time.perf_count
///
### Class-Based Middleware
## HTTP Middleware
As you noticed the decorator `@app.middleware('http')` contains a parameter called `http`.
This parameter defines the type of server events to be handled by the middleware.
ASGI server supports the following scope types (or event types): `lifespan`, `http`, and `websocket`.
The `http` middleware is designed to work with HTTP protocol, and it is responsible for handling of HTTP requests and responses.
## Class-Based Middleware
It is possible to define a custom `http` middleware using classes.
We will implement the class-based middleware with exactly the same functionality as in the example above.
We will implement a class-based middleware with exactly the same functionality as in the example with the `@app.middleware('http')` decorator.
We will use an abstract `BaseHTTPMiddleware` class from Starlette that allows to write custom `http` middlewares.

Loading…
Cancel
Save