I am trying to understand the Backbone.js sync method and was going through the documentation on
http://backbonejs.org/#Sync
It says
The default sync handler maps CRUD to REST like so:
create → POST /collection
read → GET /collection[/id]
…
I am well aware it can be done and I've looked at quite a few places (including: Best practice for saving an entire collection?). But I'm still not clear "exactly how" is it written in code? (the post explains it …
I've been studying Backbone.js for a few weeks, and I feel comfortable using views with models, routers, and collections.
I still have some big gaps:
What is the connection between id, cid, and idAttribute? How do they affect each …