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?