Sweiper在react中的使用(解决分页器不显示问题)
Posted hhuizi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Sweiper在react中的使用(解决分页器不显示问题)相关的知识,希望对你有一定的参考价值。
componentWillUnmount() { if (this.swiper) { // 销毁swiper this.swiper.destroy() } } componentDidUpdate(){ if(this.swiper){ this.swiper.slideTo(0, 0) this.swiper.destroy() this.swiper = null; } this.swiper = new Sweiper(this.refs.banner, { loop:true, pagination: { el: ‘.banner-pagination‘, clickable: true, }, }); }
return ( <div className="banner"> <div className="swiper-container" ref="banner"> <div className="swiper-wrapper banner-box"> { banners.map((item,index)=>{ return <div className="swiper-slide" key={index}> <img src={getPic(item.image_hash)} className="banner-img"/> </div> }) } </div> <div className="swiper-pagination banner-pagination"></div> </div> </div> )
以上是关于Sweiper在react中的使用(解决分页器不显示问题)的主要内容,如果未能解决你的问题,请参考以下文章