我已经在这里发布了我的代码。
单击 type1 和 type2 链接时,我正在过滤某些条件下的数据,并且由于这种过滤,我无法计算每个场景中的记录总数。
我应该能够计算每次过滤中的记录总数和类型 1、类型 2 的记录总数。
App.IndexController = Ember.ArrayController.extend({
total:function(){
return this.get('content.length');
}.property('content.length'),
total1: function() {
return this.get('content').filterProperty('contacttype', 1).get('length');
}.property('content.@each.contacttype'),
total2:function(){
return this.get('content').filterProperty('contacttype', 2).get('length');
}.property('content.@each.contacttype')
});