ReactJS - เหตุการณ์
ในบทนี้เราจะเรียนรู้วิธีใช้เหตุการณ์
ตัวอย่างง่ายๆ
นี่เป็นตัวอย่างง่ายๆที่เราจะใช้เพียงส่วนประกอบเดียว เรากำลังเพิ่มonClick เหตุการณ์ที่จะเกิดขึ้น updateState เมื่อกดปุ่มแล้ว
App.jsx
import React from 'react';
class App extends React.Component {
constructor(props) {
super(props);
this.state = {
data: 'Initial data...'
}
this.updateState = this.updateState.bind(this);
};
updateState() {
this.setState({data: 'Data updated...'})
}
render() {
return (
<div>
<button onClick = {this.updateState}>CLICK</button>
<h4>{this.state.data}</h4>
</div>
);
}
}
export default App;
main.js
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App.jsx';
ReactDOM.render(<App/>, document.getElementById('app'));
สิ่งนี้จะให้ผลลัพธ์ดังต่อไปนี้
เหตุการณ์เด็ก
เมื่อเราต้องการอัปเดตไฟล์ state ขององค์ประกอบหลักจากลูกเราสามารถสร้างตัวจัดการเหตุการณ์ (updateState) ในองค์ประกอบหลักและส่งผ่านเป็นเสา (updateStateProp) ไปยังองค์ประกอบย่อยที่เราสามารถเรียกมันได้
App.jsx
import React from 'react';
class App extends React.Component {
constructor(props) {
super(props);
this.state = {
data: 'Initial data...'
}
this.updateState = this.updateState.bind(this);
};
updateState() {
this.setState({data: 'Data updated from the child component...'})
}
render() {
return (
<div>
<Content myDataProp = {this.state.data}
updateStateProp = {this.updateState}></Content>
</div>
);
}
}
class Content extends React.Component {
render() {
return (
<div>
<button onClick = {this.props.updateStateProp}>CLICK</button>
<h3>{this.props.myDataProp}</h3>
</div>
);
}
}
export default App;
main.js
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App.jsx';
ReactDOM.render(<App/>, document.getElementById('app'));
สิ่งนี้จะให้ผลลัพธ์ดังต่อไปนี้