There is https://github.com/kmalakoff/backbone-modelref .
, , assync sync (, ). //, .
var model = new AppModel({ id: 123 });
model.fetch().then(function () {
var view = new AppModelView({ model: model });
$('.placeholder').html(view.render().$el);
}).fail(function(reason) {
var view = new AppErrorAlertView({ model: model, error: reason });
..
})
, , , , . . factory,
. , :
var collection = new AppModelCollection();
collection.fetch().then(function(){
var model = collection.get(123);
});