第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

react中如何根據(jù)state來判斷是否給標(biāo)簽添加指定屬性?

react中如何根據(jù)state來判斷是否給標(biāo)簽添加指定屬性?

大話西游666 2018-12-19 16:15:40
this.state= {autoplay: false}....render(){    return(        <Carousel>            {something}        </Carousel>    )}如何根據(jù) this.state.autoplay 給Carousel返回是否添加autoplay屬性大致意思如下<Carousel {this.state.autoplay ? "autoplay" : ""}>    {something}</Carousel>這個會報錯, 有沒有簡便的方法來書寫?復(fù)雜的方式:render(){    if(this.state.autoplay){        return(            <Carousel autoplay>                {something}            </Carousel>        )    }else{        return(            <Carousel>                {something}            </Carousel>        )    }}
查看完整描述

1 回答

?
PIPIONE

TA貢獻(xiàn)1829條經(jīng)驗 獲得超9個贊

<Carousel autoplay={this.state.autoplay}>

    {something}

</Carousel>

----忘了看你原本state存儲的就是true 和false了,一般像這樣的單屬性都是可以寫成左右等式的


查看完整回答
反對 回復(fù) 2019-01-23
  • 1 回答
  • 0 關(guān)注
  • 418 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號