The reason I'm late to the backbone party is because I'm worried it wont play nicely with my existing webservice. I have even got to the point where I'm using my own version of backbones controllers and models, but its fruitless to just write my own, (certainly) worse, implementation.
I am using a Asp.net web service, so, on the assumption we are updating a user model I use the following three calls:
myservice/deleteUser.aspx?id=1
myService/getUser.aspx?id=1
myService/setUser.aspx? //post model
I don't see how this works with backbones sync
? I assume I'd have to overwrite fetch
/save
and destroy
?
I'd be really grateful for some good examples. I have read around the subject, including the annotated source, but I'm struggling for the "ah ha" moment.