Ext.applyIf(Array.prototype, {
Ext.applyIf(Array.prototype, {
**
* 檢查陣列中是否存在指定的物件。
* @param {Object} o 要檢查的物件
* @param {Number} from (可選)開始搜尋的索引
* @return {Number} o 中的索引陣列(如果找不到則為-1)
*/
indexOf : function(o, from){
var len = this.length;
from = from || 0;
from = (from for (; from if(this[from] === o){
return from;
}
});
return -1;
}
從原始碼可以看出,查找是簡單的線性查找。
由於線性查找效率是 O(n) ,所以,在資料量稍大的時候,需要尋找替代 Array 的辦法。有很多文章說過關於 Array 的這個問題,包括《權威指南》,辦法是模擬一個 Hash 表。
代碼如下:
[];
Ext.each(_this.hosts,function(item){
hostsIP.push(item.ip);
});
Ext.each(txtHostsIP,function(ip) {
if(hostsIP.indexOf(ip)===-1){//問題代碼
var host = {
isAppend : true,//新增的主機
isAgentOk : false,
ip : ip
};
_this.hosts.push(
Ext.apply(host,_this.MAPPING_FIELDS)
);
isAppend = true
; {
errors.push('IP[' ip ']已存在');
}
});
當hostsIP長度超過2000個時,IE8-瀏覽器會出現以下提示
依照《權威指南》中給出的提示,我對程式碼做了以下修改後,問題解決。
複製代碼
代碼如下:
var hostsIP = {};
var hostsIP = {};
hostsIP[item.ip]=item.ip;
});
Ext.each(txtHostsIP,function(ip){
if(!hostsIP.hasOwnProperty(ip)){
var host = {
isAppend : true,//新增的主機
isAgentOk : false,
ip : ip
};
_this.hosts.push(
Ext.apply(host,_this.MAPPING_FIELDS)
);
isAppend = true;
}else{ errors.push('IP[' ip ']已存在'); } });