Comments (7)
Seems like we should allow any valid uri between forward slashes.
Sent from my iPhone
On Jun 29, 2014, at 6:45 PM, Chris Lee [email protected] wrote:
I'd like to have a match based on a param that contains a period, instead of using the period as a separator and therefore considering it as two separate params. Possible?
—
Reply to this email directly or view it on GitHub.
from react-router.
Here's an example. If I have a route set up like
<Route name="thing" path=":param" handler={thing} />
and then go to
localhost:3000/#foo.bar (Detail: I'm using hash-based routes.)
I get a warning:
Warning: No route matches path "foo.bar". Make sure you have <Route path="foo.bar"> somewhere in your routes
but if I change the route to
<Route name="thing" path=":param1.:param2" handler={thing} />
then the route gets matched and I get foo as param1 and bar as param2, but I just one one param equal to foo.bar.
from react-router.
Currently, :paramName-style placeholders match everything up to a ., /, ?, or #. The idea was that you might want to have a pattern like /files/:filename.:ext and you could get the filename and ext in two separate params. However, of those 4 chars, I'd agree that . feels the most out of place. It's definitely significant in file paths, but a little less so in URLs.
Ultimately this is just a matter of preference. I'd be ok to switch the behavior if everyone wants to.
from react-router.
Hm, I can see the reason for the current behavior. It's pretty inconvenient for what I'm doing, though, since I'm checking strings in the params that just happen to contain a period. I think I'll fork for my own use, at least.
from react-router.
@cleercode It's literally just removing the . char from that RegExp.
@rpflorence What's your feeling?
from react-router.
This is the second time it's come up, and I anticipate it'll be problem when we bring the router in for a file browser UI we're working on right now.
I think . makes more sense as a character than delimiter.
Sent from my iPhone
On Jun 30, 2014, at 12:00 AM, Michael Jackson [email protected] wrote:
@cleercode It's literally just removing the . char from that RegExp.
@rpflorence What's your feeling?
—
Reply to this email directly or view it on GitHub.
from react-router.
@rpflorence Yeah, I agree.
@cleercode You want to make a PR? :)
from react-router.
Related Issues (20)
- [Docs]: History Package dependency with v6+ HOT 2
- Can't access action() return value (e.g. { ok: true }) from fetcher.submit() result HOT 1
- useFetcher.submit causes 404 when basename is set in react-router.config.ts HOT 3
- `<base>` tag not rendered when defined in `meta` export HOT 2
- Using `setSearchParams` from `useSearchParams` inside `useEffect` causing crash if the browser is google chrome HOT 2
- Vite Dev and Build hangs forever HOT 9
- Cloudflare RSC in data mode erroring during dev
- preventScrollReset not working HOT 5
- I cannot use Mock Data in React Router, can you give me some modification suggestions? HOT 3
- Redirect behavior inconsistency HOT 13
- Cannot find module `@mjackson/node-fetch-server` breaks Vercel builds HOT 7
- p-map import breaks @react-router/dev's node 20 compatibility HOT 9
- useSearchParams cannot handle successive updates HOT 1
- docs(tutorials): Tutorials section not prominent in v7 docs compared to v6 HOT 1
- v8_middleware does not work with Cloudflare Workers HOT 2
- Enabling RSC in framework mode breaks hydration HOT 2
- [Docs]: https://reactrouter.com/start/framework/route-module#clientloader HOT 1
- Type error with exactOptionalPropertyTypes: true HOT 3
- Fetcher sometimes transitions to idle before new loader data is available HOT 2
- Relative path navigation creates malformed URI segment when any segment contains %25
Recommend Projects
-
React
A declarative, efficient, and flexible JavaScript library for building user interfaces.
-
Vue.js
🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.
-
Typescript
TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
-
TensorFlow
An Open Source Machine Learning Framework for Everyone
-
Django
The Web framework for perfectionists with deadlines.
-
Laravel
A PHP framework for web artisans
-
D3
Bring data to life with SVG, Canvas and HTML. 📊📈🎉
-
Recommend Topics
-
javascript
JavaScript (JS) is a lightweight interpreted programming language with first-class functions.
-
web
Some thing interesting about web. New door for the world.
-
server
A server is a program made to process requests and deliver data to clients.
-
Machine learning
Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.
-
Visualization
Some thing interesting about visualization, use data art
-
Game
Some thing interesting about game, make everyone happy.
Recommend Org
-
Facebook
We are working to build community through open source technology. NB: members must have two-factor auth.
-
Microsoft
Open source projects and samples from Microsoft.
-
Google
Google ❤️ Open Source for everyone.
-
Alibaba
Alibaba Open Source for everyone
-
D3
Data-Driven Documents codes.
-
Tencent
China tencent open source team.
from react-router.