码迷,mamicode.com
首页 > 其他好文 > 详细

React中条件渲染

时间:2019-12-01 18:30:11      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:null   xtend   ret   ext   super   def   ops   struct   his   

17==》 条件渲染
 state初始化一般写在构造器当中

CharShop.js如下

import React, { Component } from "react";
export default class CharShop  extends Component {
    // state初始化一般写在构造器当中
    constructor(props){
        super(props);
        this.state={
            goods: [{ id: 1, text: "web111" }, { id: 2, text: "web222" },{ id: 3, text: "web333" }]
        }
    }

     render(){
        //  获取state中的内容
         let con = this.state.goods[0].text ? <h1>{this.state.goods[0].text}</h1>:null   //条件渲染 

         return(
             <div>
               {con}
             </div>
         )
     }

}

 

React中条件渲染

标签:null   xtend   ret   ext   super   def   ops   struct   his   

原文地址:https://www.cnblogs.com/IwishIcould/p/11966808.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!