0
ReactJS에서 어떻게 아래 시나리오를 수행 할 수 있습니까?reactjs에서 버튼 클릭에 대해 두 개의 함수를 바인딩하는 방법
function foo1(){
console.log('foo1')
}
function foo2(){
console.log('foo2')
}
$('#button').click(foo1);
$('#button').click(foo2);
나는 기능을 모두
가 jsx 코드 아래 고려 버튼을 클릭에서 호출 할
Var Component = React.createClass({
foo1: function(){
console.log('foo1');
},
foo2: function(){
console.log('foo2');
},
render: function(){
return (
<button onClick={this.foo}> click me </button>
);
}
});
또는 'onClick = {this.foo.bind (null, this.foo1, this.foo2)}}'. – eth3lbert
감사합니다. 첫 번째 솔루션이 저에게 효과적이었습니다. – SRAVAN