根据您的具体问题,使用内置方法可能是一种更好的方法,但如果您真的想要一个更具有处理程序风格的迭代器,并针对此确切需要量身定制 args,这里有一个如何扩展 Array 原型的示例。
Array.prototype.disToDat = function(dis){
if(dis===undefined || typeof dis === 'function'){
throw new Error('No dis. You need dat and deserve to be dissed');
}
dis = this.indexOf(dis);
if(typeof arguments[1] === 'function'){
var dat = this.length - 1; //optional dat - runs to the end without
var handler = arguments[1];
}
else if(typeof arguments[2] === 'function'){
var dat = this.indexOf(arguments[1]);
if(dis > dat){ throw new Error('Dat is before dis? What is dis!?'); }
var handler = arguments[2];
}
else{
throw new Error(
"You can't handle dis or dis and dat without a handler."
);
}
if(dis === -1 || dat === -1){ return null; }
for(var i=dis; i<=dat; i++){
handler(this[i]);
}
}
用法:
['a','b','c','d','e'].disToDat('b', 'd', function(disOne){ console.log(disOne); });
//dis and dat
['a','b','c','d','e'].disToDat('b', function(disOne){ console.log(disOne); });
//without optional dat, it just goes to the end
引发错误:
- 缺少处理程序
-第一个位置没有'dis'参数
-'dat' 在 'dis' 之前