I’m trying to do a route with backbone.js that match ‘/object/:id’
Problem is, i can receive get parameters containing anything, including slashes, then backbone doesn’t recognize this url : /object/1337?var=/hey
Can i ignore get parameters or simply say that i want my route to begin with ‘/object/:id?’ ?
Thanks.
Finally found a solution, maybe a little ugly