I have a Clock model in Backbone:
Clock
var Clock = Backbone.Model.extend({});
I\'m trying to get an instance of that that has the l
Try specifying urlRoot in the model:
From the docs:
var Book = Backbone.Model.extend({urlRoot : '/books'}); var solaris = new Book({id: "1083-lem-solaris"}); solaris.fetch();