Giter VIP home page Giter VIP logo

Comments (4)

azicchetti avatar azicchetti commented on July 23, 2024

Hi,
I'm afraid this is actually a "feature". It may sound strange, but I know a few people (including myself) that use multiple matches to render different parts of the page in certain applications.

For example, content is rendered by a "list.html(?:....ecc)" regexp, while header and footer are generated through a "." regexp that matches every page.

Mobile websites may also use this technique to track page views through analytics (using a general handler for pageshow that calls _trackPageview).

However, I'm planning to add a status variable in the router, that counts how many handlers are called for the current event.
In your example, the status variable would hold 0 when Controller.blahs_year is executed during beforeshow, and 1 when Controller.blahs is called.
Same thing for the hide event (it's resetted to 0 when the event changes).
Hope it sounds a viable solution to cover scenarios like the one you presented.

Cheers,
Andrea

from jquerymobile-router.

stephenhandley avatar stephenhandley commented on July 23, 2024

Hi Andrea,

Thanks for the response.. I was thinking that the behavior was probably on purpose right after filing the issue. I can see how that flexibility makes sense in those cases.

As far as the router status variable goes, if its possible, I think a mobileinit configuration option would probably be cleaner for usage than a status counter (or at least in addition to). To specify only a single match being allowed, users could do something like:

 $(document).bind("mobileinit",function(){
        $.mobile.jqmRouter={
          firstMatchOnly: true
        };
    });

which would result in only the first match being dispatched to. firstMatchOnly would default to false, which would result in the current behavior.

Thanks!
Stephen

from jquerymobile-router.

azicchetti avatar azicchetti commented on July 23, 2024

Hi,
a configuration option makes much more sense than a status variable, thank you for the idea.

I'll try to push the fix in the next few hours.

Cheers,
Andrea

from jquerymobile-router.

stephenhandley avatar stephenhandley commented on July 23, 2024

Awesome, thanks!

from jquerymobile-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.