开发者

Multiple URL parameters and rails/backbone.js

开发者 https://www.devze.com 2023-04-02 16:04 出处:网络
I have just begun to port a layered single page js app onto backbone.js and was trying to understand how to handle composite url parameters with routes and spalts in backbone.js. The backend has rails

I have just begun to port a layered single page js app onto backbone.js and was trying to understand how to handle composite url parameters with routes and spalts in backbone.js. The backend has rails and sends JSON.

There are various entities (models) like filters, dimensions, features, questions which can be passed via request parameters.

URL 1 /display/#widget?id=42&fon=1,2,4&foff=6,9,19&q=1a2bc3abc4d

URL 2 /display/#widget?id=42&compare=345,567,90&fon=1,2,4&foff=6,9,19&q=1a2bc3abc4d

How to i struct开发者_JAVA百科ure these non-restful urls, keep the same functionality and allow bookmarkability.

Thanks


Backbone's router, for the purpose of invoking views, cares only about the hash portion of window.location. However, it does keep track of the search portion for the purpose of maintaining the browser history.

Therefore, the decision about bookmarkability is your responsibility: the hash will invoke a specific route, and what views that route hides or shows is up to you. How those views parse the search string and react is also up to you.

I can see what you want to do: change a model through the search function, then render it. It's a bit of a two-step trigger: hash-change -> model-sync -> show-view. Structuring that sounds like it'll be fun. But Backbone is capable.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号