Git Product home page Git Product logo

Comments (7)

ryanflorence avatar ryanflorence commented on April 18, 2024

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.

cleercode avatar cleercode commented on April 18, 2024

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.

mjackson avatar mjackson commented on April 18, 2024

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.

cleercode avatar cleercode commented on April 18, 2024

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.

mjackson avatar mjackson commented on April 18, 2024

@cleercode It's literally just removing the . char from that RegExp.

@rpflorence What's your feeling?

from react-router.

ryanflorence avatar ryanflorence commented on April 18, 2024

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.

mjackson avatar mjackson commented on April 18, 2024

@rpflorence Yeah, I agree.

@cleercode You want to make a PR? :)

from react-router.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo 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.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.