我有多個輸入;我怎麼知道哪個輸入被改變了?我認爲一種方法是我可以將其他參數傳遞給我的handleChange函數。我知道我可以在jsx onChange={this.handleChange.bind(this, 'name');
中做到這一點,但我不知道該怎麼做,因爲構造函數綁定了函數。在反應中使用構造函數時傳遞附加參數函數
class HelloWorldComponent extends React.Component {
constructor(){
super();
this.handleChange = this.handleChange.bind(this);
this.state = {
name:"",
age:""
}
}
render() {
const person = {"name":"james", "age":18};
return (
<div>
<input onChange={this.handleChange} type="text" placeholder="name" defaultValue={person.name} /><br />
<input onChange={this.handleChange} type="text" placeholder="age" defaultValue={person.age} />
</div>
);
}
handleChange(e){
// how to get name and age here?
console.log(e.target.value)
}
}
http://jsbin.com/cubofurihu/edit?js,console,output
的[可能的複製陣營JS的onClick不能通過值到方法](http://stackoverflow.com/questions/29810914/react-js-onclick-cant-pass-value-to-method) –