• Conditional Rendering(有条件地渲染页面)
  • Element Variables(element变量)
  • Inline If with Logical && Operator(true && 表达式)
  • Inline If-Else with Conditional Operator(if else语句)
  • Preventing Component from Rendering()

    Conditional Rendering(有条件地渲染页面)

    在React中你可以封装任意内容的用户界面Component,只要你有需要的话!然后,你可以在渲染这些组件到dom中的时候,根据需要,选择其中的一部分进行渲染,这个取决你的组件state。

    在react中,使用条件渲染跟你在javascript中使用条件语句是一样的,你可以使用操作符if或者条件语句等语法有条件地根据当前的state渲染Elements,最后再更新dom以显示符合当前elements的用户界面。

    思考一下下面两个组件:

    1. function UserGreeting(props){
    2. return <h1>Welcome back!</h1>;
    3. };
    4. function GuestGreeting(props){
    5. return <h1>Please sign up.</h1>;
    6. };

    我们将创建一个Greeting组件来显示它们其中的一个,当然了具体显示哪一个是根据当前用户是否登陆来决定的!

    1. function Greeting(props){
    2. const isLoggedIn = props.isLoggedIn;
    3. if(isLoggedIn){
    4. return <UserGreeting />;
    5. }else{
    6. return <GuestGreeting />;
    7. };
    8. };
    9. ReactDOM.render(
    10. <Greeting isLoggedIn={false}/>,
    11. document.getElementById('root')
    12. );

    我们将看到,Greeting怎么渲染是根据其props属性isLoggedIn来决定的。

    Element Variables(element变量)

    你可以使用一个变量来存储Elements,这样就能使你的组件组件不改变返回值的情况下有条件地渲染其需要的用户界面。

    我们来看下下面的登入和登出按钮组件:

    1. function LoginButton(props){
    2. return (
    3. <button onClick={props.onClick}>
    4. Login
    5. </button>
    6. );
    7. };
    8. function LogoutButton(props){
    9. return (
    10. <button onClick={props.onClick}>
    11. Logout
    12. </button>
    13. );
    14. };

    在下面的代码中,我们将采用“类式”方式写一个有状态的LoginControl组件。

    LoginControl组件将渲染或者组件,这取决它当前的状态。同时会用到前面的:

    1. class LoginControl extends React.Component{
    2. constructor(props){
    3. super(props);
    4. this.handleLoginClick = this.handleLoginClick.bind(this);
    5. this.handleLogoutClick = this.handleLogoutClick.bind(this);
    6. this.state = {
    7. isLoggedIn:false
    8. };
    9. };
    10. handleLoginClick(){
    11. this.setState({isLoggedIn:true});
    12. };
    13. handleLogoutClick(){
    14. this.setState({isLoggedOut:false});
    15. };
    16. render(){
    17. const isLoggedIn = this.state.isLoggedIn;
    18. let button = null;
    19. if(isLoggedIn){
    20. button = <LogoutButton onClick={this.handleLogoutClick}/>;
    21. }else{
    22. button = <LoginButton onClick={this.handleLoginClick} />;
    23. };
    24. return(
    25. <div>
    26. <Greeting isLoggedIn={isLoggedIn} />
    27. {button}
    28. </div>
    29. );
    30. };
    31. };
    32. ReactDOM.render(
    33. <LoginControl />,
    34. document.getElementById('root')
    35. );

    采用变量存储element和使用if语句来进行条件渲染是一个非常好的用法实践。有些时候,你可能更喜欢更短一点的语句来进行条件渲染,我们将在下面解释怎么做到这样。

    Inline If with Logical && Operator(true && 表达式)

    你可以用大括号植入任何有效的js表达式,包括javascript逻辑和操作符,这样可以很方便地引入一个element:

    1. function Mailbox(props){
    2. const unreadMessages = props.unreadMessages;
    3. return (
    4. <div>
    5. <h1>Hello!</h1>
    6. {unreadMessages.lendth > 0 &&
    7. <h2>
    8. You have {unreadMessages.length} unread messages.
    9. </h2>
    10. }
    11. </div>
    12. );
    13. };
    14. const messages = ['React','Re:React','Re:Re:React'];
    15. ReactDOM.render(
    16. <Mailbox unreadMessages={messages} />,
    17. document.getElementById('root')
    18. );

    上面的代码之所以能正常工作,是因为在javascript中:true && expression 总是会执行后面的表达式,false && expression总是会忽略后面的表达式同时返回false。

    因此,如果条件为true,那么在&&符号后面的element就会出现在render方法的输出中,反之,则会忽略并跳开它执行。

    Inline If-Else with Conditional Operator(if else语句)

    在react中使用的其它条件渲染语法就是:condition?true:falsel。

    在下面的例子中,我们使用它渲染一个文本块:

    1. render(){
    2. const isLoggedIn = this.state.isLoggedIn;
    3. return (
    4. <div>
    5. The user is <b>{isLoggedIn ? 'currently':'not'}</b> logged in.
    6. </div>
    7. );
    8. };

    我们也可以写得稍微复杂一点:

    1. render(){
    2. const isLoggedIn = this.state.isLoggedIn;
    3. return (
    4. <div>
    5. {isLoggedIn ? (
    6. <LogoutButton onClick={this.handleLogoutClick} />
    7. ):(
    8. <LoginButton onClick={this.handleLoginClick} />
    9. )}
    10. </div>
    11. );
    12. };

    当然了,至于选择上面的那种写法取决于你的团队更喜欢那种,这样更利于团队合作和提高代码可阅读性。当然了,如果的组件已经非常复杂了,那么是时候提取、分离你的组件了。

    Preventing Component from Rendering()

    有时我们希望隐藏我们的组件,即使组件在包含它的组件中被渲染时,我们也希望这样做。怎么做到如此呢?我们可以使用return null来代替它以前的输出。

    在下面的例子中,组件是否渲染是根据它的props属性warn决定的,当我们不希望此组件在页面中渲染处内容的时候,我们可以返回null,如下:

    1. function WarningBanner(props){
    2. if(!props.warn){
    3. return null;
    4. };
    5. return (
    6. <div className="warning">
    7. Warning!
    8. </div>
    9. );
    10. };
    11. class Page extends React.Component{
    12. constructor(props){
    13. super(props);
    14. this.state = {showWarning:true};
    15. this.handleToggleClick = this.handleToggleClick.bind(this);
    16. };
    17. handleToggleClick(){
    18. this.setState(prevState => ({
    19. showWarning : !prevState.showWarning
    20. }));
    21. };
    22. render(){
    23. return (
    24. <div>
    25. <WarningBanner warn={this.state.showWarning} />
    26. <button onClick={this.handleToggleClick}>
    27. {this.state.showWarning ? 'Hide':'Show'}
    28. </button>
    29. </div>
    30. );
    31. };
    32. };
    33. ReactDOM.render(
    34. <Page />,
    35. document.getElementById('root')
    36. );

    我们返回null并不会影响一个组件的生命周期,像这些生命周期钩子函数依然会调用:componentWillUpdate、componentDidUpdate!