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
When defining a route to capture the remaining part of the path in a globstar (**), what is the appropriate mechanism to obtain what the contents of the remaining path are for the user to process? I couldn't find documentation on this and it doesn't appear as if it is actually saved in the code?
And the route: /mypath/foo/bar How should the <mypath> element obtain the foo/bar portion since it isn't assigned to a parameter like the :userId syntax.
The text was updated successfully, but these errors were encountered:
When defining a route to capture the remaining part of the path in a globstar (
**
), what is the appropriate mechanism to obtain what the contents of the remaining path are for the user to process? I couldn't find documentation on this and it doesn't appear as if it is actually saved in the code?For example, given the definition:
And the route:
/mypath/foo/bar
How should the<mypath>
element obtain thefoo/bar
portion since it isn't assigned to a parameter like the:userId
syntax.The text was updated successfully, but these errors were encountered: