GithubHelp home page GithubHelp logo

scriptology / backbone-query-parameters Goto Github PK

View Code? Open in Web Editor NEW

This project forked from jhudson8/backbone-query-parameters

0.0 2.0 0.0 7.7 MB

Backbone plugin which provides query parameter support

License: Other

backbone-query-parameters's Introduction

Installation

Copy backbone.queryparams.js to your environment and include after backbone.js.

Query string route syntax

Any route except those ending with a wildcard will automatically accept additional content using the '?' separator. This content is a set of key value pairs using '&' as the pair separator and '=' as the key/value separator - just like the URL query string syntax.

If a query string exists in the route hash, the routing function (defined in the routes hash) will be given an additional parameter (in last ordinal position) containing hash of the key/value data.

routes: {
	'foo/:bar': 'myRoute'
}
...
myRoute: function(bar, params) {
	// the params attribute will be undefined unless there is a route containing a query string
}

Example route patterns

  • #foo/abc -> myRoute( 'abc', undefined )
  • #foo/abc?foo=bar -> myRoute( 'abc', {'foo': 'bar'} )

Named route parameters

All query parameters can be passed in a single hash using the key referenced from the route definition by setting Backbone.Router.namedParameters = true.

Using the previous example route patterns, the controller function would be

myRoute( {bar: 'abc', foo: 'bar'} );

Although this is not compatible with backbone, it is very useful to prevent router function parameter overloading where you have to always consider whether the route query parameters were passed.

Nested query strings

  • Any keys containing '.' will represent a nested structure.

  • Any keys containing '[]' will assume an array structure.

  • Any values containing '|' will assume an array structure.

  • Non-array values can still contain '|' but it must be URI encoded (%7C).

  • A prefix of '|' will ensure an array in case there is only a single value.

      #foo/abc?me.fname=Joe&me.lname=Hudson -> myRoute('abc', {'me': {'fname': 'Joe', 'lname': 'Hudson'}} )
    
      #foo/abc?animals=cat|dog -> myRoute( 'abc', ['cat', 'dog'] )
    
      #foo/abc?animals=|cat -> myRoute( 'abc', ['cat'] )
    

Generating route with query string

You can create a route string from a route + parameter hash using the router.toFragment(route, parameters) method. It can contain a nested hash structure or arrays. ex:

var route = router.toFragment('myroute', {
	a:'l', b:{c: 'n', d:'m', e:{f: 'o'}}, array1:['p'], array2:['q', 'r'], array3:['s','t','|']
});

Regular Expression Routes

If you want to use this plugin with regex routes you'll need to append the query capture component (([\?]{1}.*)?) manually.

router.route(/foo\/([^\/]+)\//, 'foo:event', callback)

should be written

router.route(/foo\/([^\/]+)\/([\?]{1}.*)?/, 'foo:event', callback)

Supported Versions

This library supports Backbone 1.0.0 and 1.1.0. Backbone 1.1.0 users need to either include the backbone.queryparams-1.1-shim.js file or modify their backbone libray to remove this line from Backbone.History.prototype.navigate.

      // Strip the fragment of the query and hash for matching.
      fragment = fragment.replace(pathStripper, '');

backbone-query-parameters's People

Contributors

jhudson8 avatar kpdecker avatar jeremyfreeagent avatar emeraldimp avatar kylefritz avatar rafaelxy avatar eightysteele avatar andreypopp avatar cgarvis avatar jmparsons avatar mdreizin avatar nedcampion avatar sebpiq avatar theresaanna avatar devth avatar jnachtigall avatar weiribao avatar

Watchers

James Cloos avatar Andrew Solovev avatar

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.