Object.prototype.hash = function(string) {
var obj = this;
string.split(".").forEach(function(el) {
console.log(obj); // 为什么每次 obj 会改变呢?
try {
obj = obj[el];
}
catch(e) {
obj = undefined;
}
});
return obj;
}
// 测试用例
var obj = {
person: {
name: 'joe',
history: {
hometown: 'bratislava',
bio: {
funFact: 'I like fishing.'
}
}
}
};
console.log(obj.hash('person.name'));
console.log(obj.hash('person.history.bio'));
console.log(obj.hash('person.history.homeStreet'));
console.log(obj.hash('person.animal.pet.needNoseAntEater'));
发现每一次循环,obj都递减了层次。
4 回复