You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- router["command"] : allow both "/command" and "command": typical usage
- router["command", .exactMatch]: allow only "command": rare case
- router [".command"]: allow only ".command": special command sets
- router["/command"]: allow only "/command": rare case
In other words, the logic is: if it starts with alphanumeric, then '/' is optional, otherwise requires exact match.
The text was updated successfully, but these errors were encountered:
In other words, the logic is: if it starts with alphanumeric, then '/' is optional, otherwise requires exact match.
The text was updated successfully, but these errors were encountered: