React中条件渲染
Posted iwishicould
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了React中条件渲染相关的知识,希望对你有一定的参考价值。
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中条件渲染的主要内容,如果未能解决你的问题,请参考以下文章
在 React 中条件渲染组件上的 TailwindCSS 动画