I have a Clock model in Backbone:

var Clock = Backbone.Model.extend({});

I'm trying to get an instance of that that has the latest information from /clocks/123. Some things I've tried:

a "class"-level method

Clock.fetch(123)
// TypeError: Object function (){ ... } has no method 'fetch'

creating an instance and then calling fetch on it:

c = new Clock({id: 123})
c.fetch()
// Error: A 'url' property or function must be specified

a collection

I tried creating an AllClocks collection resource (even though I have no use for such a thing on the page):

var AllClocks = Backbone.Collection.extend({
  model: Clock,
  url: '/clocks/'
});
var allClocks = new AllClocks();
allClocks.fetch(123);
// returns everything from /clocks/

How do I just get one API-backed Clock?

link|improve this question

75% accept rate
IMHO it belongs to the collection. Something like Collection#fetchOne(id, callback). – Julian Maicher Feb 2 at 15:04
feedback

4 Answers

up vote 5 down vote accepted

Your second approach is the approach I have used. Try adding the following to your Clock model:

url : function() {
  var base = 'clocks';
  if (this.isNew()) return base;
  return base + (base.charAt(base.length - 1) == '/' ? '' : '/') + this.id;
},

This approach assumes that you have implemented controllers with the hashbang in your URL like so, http://www.mydomain.com/#clocks/123 , but it should work even if you haven't yet.

link|improve this answer
1  
There is a way to avoid this as explained in Backbone Model documentation documentcloud.github.com/backbone/#Model-url – makevoid Sep 17 '11 at 11:41
@makevoid your I could not make work the example you provide in coffee script or the one in the documentation, the Andrew example works, could you provide and example with foo.url(), it always tell me that there's no function url. – rob.alarcon Dec 13 '11 at 20:30
feedback

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();
link|improve this answer
That works for me – Valentin Vasilyev Mar 14 at 13:51
feedback

I personally recommend, following the Model#url method documentation

model = new Model(id: 1)
view = new View(model: model) 
collection = new Collection([model])
model.fetch()

in your collection remember to add the collection url:

url: "/models"

and in your View's initialize function do:

this.model.bind("change", this.render)

this way backbone will do an ajax request using this url:

"/models/1"

your model will be updated and the view rendered, without modifying Collection#url or Model#urlRoot

note: sorry this example came out in coffee script, but you can easily translate it to js adding var statements

link|improve this answer
Apparently this doesn't work. Don't even makes a call to the server when calling fetch in the model (nor the collection) – Ricky AH Jan 19 at 8:27
1  
strange... can you post the code? – makevoid Jan 25 at 19:43
Indeed it was strange. I was doing it wrong. – Ricky AH Feb 1 at 23:39
The Backbone way works very well for me – denysonique Apr 16 at 17:01
feedback

Have you tried calling .get(id) on the AllClocks collection?

link|improve this answer
This only works if the model is already in the collection. It doesn't fetch. See: documentcloud.github.com/backbone/docs/backbone.html#section-64 – Julian Maicher Feb 2 at 15:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.