-
-
Notifications
You must be signed in to change notification settings - Fork 16.3k
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
Wildcard in route parameter regexp #2495
Comments
It's a limitation of the current version of |
I'm going to check if the most recent (non-backwards-compatible) version of |
It does. So this should be fixed in 5.0, but as for 4.x, you'll probably have to just use the old syntax :/ |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
So is |
It's not that we don't want to upgrade As for website issues, please file them at https://github.com/strongloop/expressjs.com |
For what it's worth, I've been using |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
So I looked really hard at this issue for Express 4.x, and it can actually be fixed in |
Looking through the related PR (pillarjs/path-to-regexp#57), it looks like it would not be possible to fix this in 4.x in a back-compatible way. Is that correct? Or is it just a matter of fixing it in |
Sorry, I never updated this issue. Yes, that is correct in that we can't get it fixed in Express 4.x. If you want to take a stab at it, please go ahead! A fresh look never hurts, because it feels like something that should be possible to fix. |
So if I understand correctly, to fix the original issue we want to prevent translation of However, we can't do this because we found an example that documents Is that a correct summary? |
Yes. Edit: It's possible people also relying on that feature now, so removing (and fixing this issue) would break. I know I've had at least one app in the future abusing the |
The only reasonable way to make a back-compatible fix that I can think of would be to add an option you could enable to make Express replace You could push that option up into a patch on I'm happy to have a stab at that change if it's something that we think is desirable. There is a bit of a philosophy question there -- how keen are we on adding options that will be removed next major version to fix bugs that may cause breakage? Otherwise, perhaps we should label this issue with something like "wontfix", "limitation" or "low-priority" to indicate we can't fix it in |
The labels are accurate: it's a bug in 4.x, but wont be fixed until 5.0 due to limitations of the implementation we have in 4.x, for better or worse. We keep this issue open for two reasons:
As for the potential solution above, any changes to building a regular expression need to land in our own dependency, otherwise we are not only defeating the purpose of owning our own dependencies, but we are cheating the community out of building complex applications, since they would have to copy and paste into their code instead of updating a dependency. An option, to me, sounds crazy, because if the change would have to be behind a flag, then it sounds like it's not backwards compatible. The way the paths work is an intrinsic property of express, and so a flag to change this behavior at runtime means a community module can no longer know it's routes will just work on a major version of Express, rather they have to instruct users to change this flag or tough luck. |
I wasn't thinking we would remove any labels or close the issue, I just wanted to add an extra label so it is easier to see the status/use in a query. Perhaps something like "fix-in-next-release" would capture it? For the potential solution, yes, it was a bit of a stretch idea and certainly far from ideal and, on reflection, the existence of a simple workaround makes it unattractive. I discounted other potential solutions (like special casing It's a shame, because I think it is quite surprising behaviour. |
Thanks for documenting this in the issue, that helps a lot What is the best workaround: using {0,} or (*) ? both work but which one is a smaller technical debt ? |
Using {0,} should work the same with 5.x comes out while (*) will likely change meaning in 5, I believe. |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This issue still exist in express 5.x in spite not being exist in Path-to-RegExp
app.get('/:number(\\d*\\d*)', (request, response) => {
response.send(request.params.number)
})
It donot work with one digit parameter (http://localhost/2) but works with more than one digit parameters (http://localhost/22) Thanks |
This is now resolved in 5.0.0-beta.1 |
Route
'/:username([a-z][a-z-]*)'
Route
'/:username([a-z][a-z-]*)/:project([a-z][a-z0-9-]*)'
URL
/someone/project
Expectation is that the second route should match.
Actual result is the first route matches because the * is considered as all the things rather than "zero or more"
[a-z-]
.The text was updated successfully, but these errors were encountered: