Backbone.js Sync Model and C # .net RESTful Web Services

I am completely lost and apparently lagging behind my web services. In my current applications, I am looking at simple ajax calls on .asmx files. With my last job, I am trying to implement backbone.js and would like to use models in combination with some RESTful web services.

I know that I can override the trunk synchronization feature, but I would really like to use it with some .net web services.

Someone has done this before and could have an example of how I cannot find an example or tutorial anywhere to even point me in the right direction. If anyone has any ideas on where I should start.

I can not add a comment, but I will use JSON

+5
source share
1 answer

I would not bother with the synchronization of the spine, do not overdo it, it will be difficult for you to hack everything you need.

create your own ajax calls for a web service with callback functions that put return values ​​in models or collections via model.set(attributes, [options])&& & &&collection.reset(models, [options])

+1
source

All Articles