単純なバックボーン コレクションを取得しようとしましたが、次のエラーが発生しました。
「url」プロパティまたは関数を指定する必要があります
var Collection = Backbone.Collection.extend({url: '/path/toCollection'});
var collection = new Collection([]);
app.vent.bindTo('applicationDidBecomeActive', collection.fetch);
app.vent.trigger('applicationDidBecomeActive');
//Error: A "url" property or function must be specified