ReactJS - แบบฟอร์ม
ในบทนี้เราจะเรียนรู้วิธีการใช้แบบฟอร์มใน React
ตัวอย่างง่ายๆ
ในตัวอย่างต่อไปนี้เราจะตั้งค่ารูปแบบการป้อนข้อมูลด้วย value = {this.state.data}. สิ่งนี้อนุญาตให้อัปเดตสถานะเมื่อใดก็ตามที่ค่าอินพุตเปลี่ยนไป เรากำลังใช้onChange เหตุการณ์ที่จะดูการเปลี่ยนแปลงอินพุตและอัปเดตสถานะตามนั้น
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(e) {
this.setState({data: e.target.value});
}
render() {
return (
<div>
<input type = "text" value = {this.state.data}
onChange = {this.updateState} />
<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'));
เมื่อค่าข้อความที่ป้อนเปลี่ยนไปสถานะจะได้รับการอัปเดต
ตัวอย่างที่ซับซ้อน
ในตัวอย่างต่อไปนี้เราจะดูวิธีใช้แบบฟอร์มจากองค์ประกอบลูก onChange เมธอดจะทริกเกอร์การอัปเดตสถานะที่จะส่งผ่านไปยังอินพุตย่อย valueและแสดงผลบนหน้าจอ มีการใช้ตัวอย่างที่คล้ายกันในบทเหตุการณ์ เมื่อใดก็ตามที่เราต้องการอัปเดตสถานะจากองค์ประกอบลูกเราจำเป็นต้องส่งผ่านฟังก์ชันที่จะจัดการกับการอัปเดต (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(e) {
this.setState({data: e.target.value});
}
render() {
return (
<div>
<Content myDataProp = {this.state.data}
updateStateProp = {this.updateState}></Content>
</div>
);
}
}
class Content extends React.Component {
render() {
return (
<div>
<input type = "text" value = {this.props.myDataProp}
onChange = {this.props.updateStateProp} />
<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'));
สิ่งนี้จะให้ผลลัพธ์ดังต่อไปนี้