我有一个小提琴http://jsfiddle.net/kristaps_petersons/9wteJ/2/它加载 3 个对象并在视图中显示它们。数据显示正常,但在显示之前我无法过滤它。这个
nodes: function(){
this.get('controller.content').filter(function(item, idx, en){
console.log('should log this atleast 3x')
})
return this.get('controller.content')
}.property('controller.content')
当模板迭代值数组时调用方法,但它永远不会进入循环并打印console.log('should log this atleast 3x')
为什么会这样?