Warum ist das im React-Ereignis null?
習慣沉默
習慣沉默 2017-05-19 10:31:29
0
1
511

Warum ist das null?

class App extends Component {


    handleClick(e) {
        console.log(this)//为什么是 null?
    }

    render() {
        return (
         
            <h2 onClick={this.handleClick}>React</h2>

        );
    }
}

export default App;

Wie lässt sich die folgende Situation erklären?

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<button onclick="func()">click</button> // 打印 undefined
<button onclick="app.handleClick()">click</button> // 打印 App
<script>

    class App {
        handleClick() {
            console.log(this)
        }
    }
    const app = new App
    const func = app.handleClick
</script>
</body>
</html>

Wann wird also „undefiniert“ gedruckt, wann wird „null“ gedruckt und wann wird es normal gedruckt?

習慣沉默
習慣沉默

Antworte allen(1)
PHPzhong
 <h2 onClick={this.handleClick.bind(this)}>React</h2>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage