我得到一个具有如下结构的模型延迟对象:
如何找出该对象内部存在多少对象(在本例中为三个)。如果我使用Object.keys(myObject).length
,它包括对象观察者和其他数据,如 _computeBindings、_bindings 等。我什至hasOwnProperty
在计算长度时尝试使用,但它没有给我想要的结果。
我能想到的一种方法是遍历索引并获得最后一个索引值,如下所示:
can.each(myObject,function(myObject,index){
// Get the last index value and put it into some variable
});
有这方面的API吗?