ant design组件里类似于这种方法是怎么调用的,这不像组件的参数。不知道怎么使用,求教。
2 回答
大话西游666
TA贡献1817条经验 获得超14个赞
constructor(props) {
super(props);
this.carouselRef = null;
this.setCarouselRef = el => {
this.carouselRef = el;
};
}
componentDidMount() {
// 调用
if (this.carouselRef) this.carouselRef.next();
}
// render部分
<Carousel ref={this.setCarouselRef} ></Carousel>
- 2 回答
- 0 关注
- 2048 浏览
添加回答
举报
0/150
提交
取消