-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
presence of query param breaks routing #60
Comments
The second argument to match-route should be the path, not the path plus query-string, nor the uri, etc. match-route expects that you've already stripped off the query-string. That may well be a residual hangover from when bidi was server-side only and Ring did the grunt work of stripping of the query-string... |
(not closing the issue, because I'm open to suggestions on this) |
Ok cool that is sensible to me. |
Maybe I'm missing something, but without matching a route with query parameters, doesn't |
I think you're confusing fragments with query parameters: I've found pushy and bidi work very well together, there's explicit Here's a useful blog article to give more info: Hope this helps clarify things. |
I see from searching the issues that matching on query-params isn't supported (as the handler ought to handle those not the router), but i expected it to still route properly ignoring the query param.
The text was updated successfully, but these errors were encountered: