javascript – onClick不会渲染新的反应组件.

我是新来的反应世界,我有这样的行:
<Button onClick={() => console.log("hello")}>Button</Button>

点击后,您将在控制台上打印出来.现在更改行:

<Button onClick={() => <NewComponent />}>Button</Button>

现在点击按钮,我希望渲染NewComponent.但是没有.

我不知道为什么会这样.请注意,我在render方法中有上述代码.

解决方法

您可能希望有一个有状态的组件在单击按钮后显示该按钮旁边的另一个组件.所有您需要做的是跟踪按钮是否被点击:
class MyComponent extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
      showComponent: false,};
    this._onButtonClick = this._onButtonClick.bind(this);
  }

  _onButtonClick() {
    this.setState({
      showComponent: true,});
  }

  render() {
    return (
      <div>
        <Button onClick={this._onButtonClick}>Button</Button>
        {this.state.showComponent ?
           <NewComponent /> :
           null
        }
      </div>
    );
  }
}

相关文章

事件冒泡和事件捕获 起因:今天在封装一个bind函数的时候,发现el.addEventListener函数支持第三个参数...
js小数运算会出现精度问题 js number类型 JS 数字类型只有number类型,number类型相当于其他强类型语言...
什么是跨域 跨域 : 广义的跨域包含一下内容 : 1.资源跳转(链接跳转,重定向跳转,表单提交) 2.资源...
@ &quot;TOC&quot; 常见对base64的认知(不完全正确) 首先对base64常见的认知,也是须知的必须有...
搞懂:MVVM模式和Vue中的MVVM模式 MVVM MVVM : 的缩写,说都能直接说出来 :模型, :视图, :视图模...
首先我们需要一个html代码的框架如下: 我们的目的是实现ul中的内容进行横向的一点一点滚动。ul中的内容...