如何解决这个内部在React应用程序中说axios回调?
-Reset
编辑: 基本上我需要将React称为遗留的jQuery实现,它需要像上面的例子那样的pub-sub模式。
答案 0 :(得分:0)
使用来自React的键盘事件 - http://facebook.github.io/react/docs/events.html例如:
var CommentForm = React.createClass({
handleSubmit: function(e) {
alert("YES again");
return;
},
handleKeyPress: function(e){console.log(e.which);if(e.which == 13){this.handleSubmit();}},
render: function() {
return (
<div className="postCon">
<form className="commentForm" onSubmit={this.handleSubmit}>
<textarea onKeyPress={this.handleKeyPress} className="textA input" placeholder="Your comment" ref="author" />
</form>
</div>
);
}
})