zoukankan      html  css  js  c++  java
  • react 三目运算符

    var Divider=React.createClass({
                getInitialState:function(){
                    return {isComplete:false}
                },
                render:function(){
                    return (
                            <div className={this.state.isComplete ? 'is_complete' : ''}>
                                <h2>{this.props.children}</h2><hr />
                            </div>
                        
                        )
                }
            });
            React.render(
                <Divider />questions</Divider>,
                document.body
            )

    前面的引入JS文件就不续写了,直接上代码,可以试试看,一定要给一个初始值getInitialState,要不然会报错!

    使用变量的三目运算符:

    var Divider=React.createClass({
                getInitialState:function(){
                    return {isComplete:true}
                },
                getIsComplete:function(){
                    return this.state.isComplete ? 'is_complete' :'';
                },
                render:function(){
                    var isComplete=this.getIsComplete();
                    return (
                        <div className={isComplete}>
                            <h2>{this.props.children}</h2>
                        </div>
                    )
                }
            });
            React.render(
                <Divider>questions</Divider>,
                document.body
            )

     使用函数的三目运算符:

    var Divider=React.createClass({
                getInitialState:function(){
                    return {isComplete:true}
                },
                getIsComplete:function(){
                    return this.state.isComplete ? 'is_complete' :'';
                },
                render:function(){
    
                    return (
                        <div className={this.getIsComplete()}>
                            <h2>{this.props.children}</h2>
                        </div>
                    )
                }
            });
            React.render(
                <Divider>questions</Divider>,
                document.body
            )
    如果问题,欢迎大家及时指点,一同交流,共同提高
  • 相关阅读:
    leetcode_239. 滑动窗口最大值
    pagehelper分页 配置参数 supportMethodsArguments 建议不要全局设置
    java面经收集
    HTTP协议超级详解
    MySQL数据库用户常用权限命令
    MySQL数据库的隔离级别
    InnoDB存储引擎的事务
    MySQL系统函数
    MySQL数据库备份与恢复
    MySQL数据库常见的数据类型
  • 原文地址:https://www.cnblogs.com/wujidns/p/5623888.html
Copyright © 2011-2022 走看看