私はこれを行うコードを持っています
class MyCollection extends Backbone.Collection
initialize: ({some_id}) ->
super
@reset $.jStorage.get "mycollection:#{some_id}" # instant fetch
console.log @length # THE MODELS ARE THERE
my_collection = new MyCollection [], some_id: 123
console.log my_collection.length # THE MODELS ARE GONE