I am very much new to backbone.js; What I understood from tutorials is that, backbone is tightly coupled with database ; which is in the form of models and collections on client side.
Assume that, if your site is holding up per-existing RESTFUL services to delete/Add/update records base on the params.
My Query is , can I still use Backbone since what I am assuming is, once user is saving or updating model which needs to be persisted on server , is handled by Save() right?
so If I don't have a control on server to write POST actions and if custom services are handling this stuff instead ; can I still use backbone by calling REST service to update record.?
Please guide.