コレクションをテンプレートに渡す前に、コレクションを並べ替えたいと思います。ビューのレンダリング機能で使用します
CollectionForTelplate : this.Collection
私は次のようにフェッチを行います
var self = this;
//fetch done here
if (Collection.length > 0) {
_.each(Collection, function(Model) {
JSON.stringify(Model);
}, this);
};
self.Collection = Collection;
self.render;
- コレクションをテンプレートに渡す方法は他にありますか?
- Model.nameなど、モデルの文字列フィールドに基づいてコレクションをどのように並べ替えますか?コレクションにコンパレーターを書いて、ビューの並べ替え機能を試してみましたが、残念ながら; それは私にはうまくいきません