动态交互式用户界面
我们已经学习如何使用 React 显示数据。现在让我们来学习如何创建交互式界面。简单例子var LikeButton = React.createClass({ getInitialState: function() { return {liked: false}; }, handleClick: function(event) { this.setState({liked: !this.state.liked}); }, render: function() { var text = this.state.liked ?
欢马劈雪