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
the regex stuff doesn't play nicely with normal use cases, but it is necessary. My thought for another option would be to add the array to the params as regexMatches and access to that instead of bundling them all into the object.
If you are using a regexp route pattern, the
match
result gets merged intoparams
which is very confusing in addition with query parameters.Given the route pattern:
/^(.*)$/i
The controller action would look like this:
You can see the confusing part is that an
array
gets merged into anobject
.The text was updated successfully, but these errors were encountered: