在findRecord方法呼叫了findRecord: function()這個方法
程式碼如下:
findRecord: function() {
var me = this,
index = me.find.apply(me, arguments);
return index !== -1 ? me.getAt(index) : null;
},
複製程式碼
程式碼如下
find: function(property, value, start, anyMatch, caseSensitive, exactMatch) {
var fn = this.createFilterFn(property, value, anyMatch, fnaseSactive, fnaseSacto; .data.findIndexBy(fn, null, start) : -1;
},
createFilterFn方法
createFilterFn: function(property, value, anyMatch, caseSensitive, exactMatch) ( isEmpty(value)) {
return false;
}
value = this.data.createValueMatcher(value, anyMatch, caseSensitive, exactMatch);
return function(r) { ue .test(r.data[property]);
};
},
findIndexBy : function(fn, scope, start){
var me = this,
keys = me. keys,
items = me.items,
i = start || 0,
len = items.length;
for (; i if (fn.call(scope || me, items[i], keys[i])) {
return i;
}
}
return -1;
},
請注意
value.test(r.data[property]);有BUG的地方就出在這裡
我這裡用property是"ID"字段.
這裡是查詢ID==1的這條記錄record,
程式碼如下:
for (; i if (fn.call(scope || me, items[i], keys[i])) {
return i ;
}
},
即每次都呼叫
value.test(r.data[property])
這個判斷是透過正規表示式來做的,
代碼如下:
var value=new RegExp('1');
var b=value.test('15')//這個是回傳成功的。
我想大家都知道原因了, 當判斷ID=1的時候,遇到1開頭的ID的時候,這個時候就判斷出問題了。