当我跑步时
store.where('record.age < 20', function(records){
console.log(records); // Array with property length 3
console.log(records.length); // 0
});
我为第一个3
获取了一个长度为console.log
的数组,但第二个数组显示0
。为什么?变量是初始化的,因为否则第一个console.log
也不会记录任何内容?
其他信息:
当我JSON.stringify
records
时,它会记录[]
,但当我在没有任何调整的情况下记录records
时,我会得到数组
编辑:数组的屏幕截图