File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -422,13 +422,15 @@ longer required. The URL ``/blog`` will match this route and the value of
422
422
the ``page `` parameter will be set to ``1 ``. The URL ``/blog/2 `` will also
423
423
match, giving the ``page `` parameter a value of ``2 ``. Perfect.
424
424
425
- +---------+------------+
426
- | /blog | {page} = 1 |
427
- +---------+------------+
428
- | /blog/1 | {page} = 1 |
429
- +---------+------------+
430
- | /blog/2 | {page} = 2 |
431
- +---------+------------+
425
+ +--------------------+-------+-----------------------+
426
+ | URL | route | parameters |
427
+ +====================+=======+=======================+
428
+ | /blog | blog | {page} = 1 |
429
+ +--------------------+-------+-----------------------+
430
+ | /blog/1 | blog | {page} = 1 |
431
+ +--------------------+-------+-----------------------+
432
+ | /blog/2 | blog | {page} = 2 |
433
+ +--------------------+-------+-----------------------+
432
434
433
435
.. tip ::
434
436
You can’t perform that action at this time.
0 commit comments