13
จะรับค่าของฟิลด์อินพุตโดยใช้ ReactJS ได้อย่างไร?
ฉันมีองค์ประกอบการตอบสนองต่อไปนี้: export default class MyComponent extends React.Component { onSubmit(e) { e.preventDefault(); var title = this.title; console.log(title); } render(){ return ( ... <form className="form-horizontal"> ... <input type="text" className="form-control" ref={(c) => this.title = c} name="title" /> ... </form> ... <button type="button" onClick={this.onSubmit} className="btn">Save</button> ... ); } }; คอนโซลกำลังให้ฉันundefined- ความคิดใด ๆ ที่เกิดขึ้นกับรหัสนี้
188
javascript
reactjs