Browse Source

📝 Add more documentation on `ignore_trailing_slash`

pull/12145/head
Synrom 7 months ago
parent
commit
319fea3781
  1. 5
      fastapi/applications.py
  2. 5
      fastapi/routing.py

5
fastapi/applications.py

@ -821,6 +821,11 @@ class FastAPI(Starlette):
By default (`ignore_trailing_slash` is False), the two requests are treated differently.
One of them will result in a 307-redirect.
It's important to understand that when `ignore_trailing_slash=True`, registering both `/auth`
and `/auth/` as different routes will be treated as if `/auth` was registered twice.
This means that only the first route registered will be used.
Therefore, ensure your route setup does not conflict unintentionally.
"""
),
] = False,

5
fastapi/routing.py

@ -842,6 +842,11 @@ class APIRouter(routing.Router):
By default (`ignore_trailing_slash` is False), the two requests are treated differently.
One of them will result in a 307-redirect.
It's important to understand that when `ignore_trailing_slash=True`, registering both `/auth`
and `/auth/` as different routes will be treated as if `/auth` was registered twice.
This means that only the first route registered will be used.
Therefore, ensure your route setup does not conflict unintentionally.
"""
),
] = False,

Loading…
Cancel
Save