Backbone does not append ID to the URL when updating model
The reason could be that you do not use urlRoot.
This is not good : Storage.Model = Backbone.Model.extend({ urlRoot: "/apis/storage", url: "/apis/storage", defaults: ... });
This will work: Storage.Model = Backbone.Model.extend({ urlRoot: "/apis/storage", defaults: ... });
Recent Comments