no-catch-shadow
此规则在 ESLint v5.1.0 中已弃用。
在 IE 8 和更早版本中,如果该变量与 catch 子句参数同名,则 catch 子句参数可以覆盖外部范围内的变量的值。
var err = "x";
try {
throw "problem";
} catch (err) {
}
console.log(err) // err is 'problem', not 'x'
规则详情
此规则旨在防止程序中的意外行为,这些行为可能由 IE 8 及更早版本中的错误引起,其中 catch 子句参数可能会泄漏到外部范围。每当遇到与外部作用域中的变量同名的 catch 子句参数时,此规则都会发出警告。
此规则的错误代码示例:
/*eslint no-catch-shadow: "error"*/
var err = "x";
try {
throw "problem";
} catch (err) {
}
function err() {
// ...
};
try {
throw "problem";
} catch (err) {
}
此规则的正确代码示例:
/*eslint no-catch-shadow: "error"*/
var err = "x";
try {
throw "problem";
} catch (e) {
}
function err() {
// ...
};
try {
throw "problem";
} catch (e) {
}
何时不使用
uZB8EJgfwJjTH1SIbmciqhJs8zLOFXqOSGRWJDmXYW6OiPULxN2CVCKWtIi/P6159atp3qe6Z9CDxWqEZEALMy1iLXUrI1LWLncu5YpfNh8=