this.state= {autoplay: false}
....
render(){
return(
<Carousel>
{something}
</Carousel>
)
}
如何根据 this.state.autoplay 给Carousel返回是否添加autoplay属性
大致意思如下
<Carousel {this.state.autoplay ? "autoplay" : ""}>
{something}
</Carousel>
这个会报错, 有没有简便的方法来书写?
复杂的方式:
render(){
if(this.state.autoplay){
return(
<Carousel autoplay>
{something}
</Carousel>
)
}else{
return(
<Carousel>
{something}
</Carousel>
)
}
}
PIPIONE
相关分类