我有一段代码是这样的。这段代码有效,但看起来很糟糕。
if(typeof(d.object) != "undefined"){
if(typeof(d.object.property) != "undefined"){
if(typeof(d.object.property.length) != "undefined"){
// do the code
}
else alert("error");
}
else alert("error");
}
else alert("error");
有什么办法可以重写它,所以它做的一样但更有效。特别是因为错误都是一样的。