<i id='hn63T'><tr id='hn63T'><dt id='hn63T'><q id='hn63T'><span id='hn63T'><b id='hn63T'><form id='hn63T'><ins id='hn63T'></ins><ul id='hn63T'></ul><sub id='hn63T'></sub></form><legend id='hn63T'></legend><bdo id='hn63T'><pre id='hn63T'><center id='hn63T'></center></pre></bdo></b><th id='hn63T'></th></span></q></dt></tr></i><div id='hn63T'><tfoot id='hn63T'></tfoot><dl id='hn63T'><fieldset id='hn63T'></fieldset></dl></div>

  • <small id='hn63T'></small><noframes id='hn63T'>

    1. <legend id='hn63T'><style id='hn63T'><dir id='hn63T'><q id='hn63T'></q></dir></style></legend>

        • <bdo id='hn63T'></bdo><ul id='hn63T'></ul>

      1. <tfoot id='hn63T'></tfoot>

        如何有条件地加载我的 React 组件?

        时间:2023-09-29
          <i id='MFO1g'><tr id='MFO1g'><dt id='MFO1g'><q id='MFO1g'><span id='MFO1g'><b id='MFO1g'><form id='MFO1g'><ins id='MFO1g'></ins><ul id='MFO1g'></ul><sub id='MFO1g'></sub></form><legend id='MFO1g'></legend><bdo id='MFO1g'><pre id='MFO1g'><center id='MFO1g'></center></pre></bdo></b><th id='MFO1g'></th></span></q></dt></tr></i><div id='MFO1g'><tfoot id='MFO1g'></tfoot><dl id='MFO1g'><fieldset id='MFO1g'></fieldset></dl></div>

            <tfoot id='MFO1g'></tfoot>
              <bdo id='MFO1g'></bdo><ul id='MFO1g'></ul>
            • <small id='MFO1g'></small><noframes id='MFO1g'>

                  <tbody id='MFO1g'></tbody>
                  <legend id='MFO1g'><style id='MFO1g'><dir id='MFO1g'><q id='MFO1g'></q></dir></style></legend>
                1. 本文介绍了如何有条件地加载我的 React 组件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  如何根据状态更改有条件地加载我的 React 工具栏组件?

                  How do i load my React toolbar component conditionally on state change?

                  constructor(props) {
                          super(props);
                          this.state = {
                              currentpagenum: 0,
                          };
                      }
                  
                  render(){
                     return(
                         <View>
                             {this.state.currentpagenum!==0 ? this.getToolbar(): null;}
                         </View>
                      );
                  }
                  
                  getToolbar(){
                        return(
                              <ToolbarAndroid />
                        );
                   }
                  

                  推荐答案

                  看起来你在 null 之后添加了一个拼写错误 ; 这是不需要的,你也可以得到去掉 getToolbar 函数 改为尝试:

                  Looks like you got a typo error you added ; after null this is unneeded also you can get rid of the getToolbar function Instead try:

                  constructor(props) {
                    super(props);
                    this.state = {
                        currentpagenum: 0,
                    };
                  }
                  
                  render() {
                    return(
                        <View>
                            {this.state.currentpagenum !== 0 ? <ToolbarAndroid /> : null}
                        </View>
                     );
                  }
                  

                  这篇关于如何有条件地加载我的 React 组件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:从一个组件调用函数到另一个组件Angularjs 2 下一篇:React Native ScrollView - 如何从另一个子组件按钮滚动到子组件?

                  相关文章

                  <small id='0yG7G'></small><noframes id='0yG7G'>

                  <legend id='0yG7G'><style id='0yG7G'><dir id='0yG7G'><q id='0yG7G'></q></dir></style></legend>

                    1. <tfoot id='0yG7G'></tfoot>

                        <bdo id='0yG7G'></bdo><ul id='0yG7G'></ul>
                      <i id='0yG7G'><tr id='0yG7G'><dt id='0yG7G'><q id='0yG7G'><span id='0yG7G'><b id='0yG7G'><form id='0yG7G'><ins id='0yG7G'></ins><ul id='0yG7G'></ul><sub id='0yG7G'></sub></form><legend id='0yG7G'></legend><bdo id='0yG7G'><pre id='0yG7G'><center id='0yG7G'></center></pre></bdo></b><th id='0yG7G'></th></span></q></dt></tr></i><div id='0yG7G'><tfoot id='0yG7G'></tfoot><dl id='0yG7G'><fieldset id='0yG7G'></fieldset></dl></div>