外观
此规则防止在 ES6 类中使用 isMounted
isMounted 是一种反模式,在使用 ES6 类时不可用,且即将正式弃用。///
class Hello extends React.Component { someMethod() { if (!this.isMounted()) { return; } } render() { return <div onClick={this.someMethod.bind(this)}>Hello</div>; } }