我想在将集合传递给模板之前对其进行排序。我在视图的渲染功能中使用
CollectionForTelplate : this.Collection
我做 fetch as
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 ?我尝试在集合中编写一个比较器并在视图中编写一个排序函数,但不幸的是;它对我不起作用