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>