当前位置:   article > 正文

react+swiper_swiper/react class 引入

swiper/react class 引入

首先引入,我这里使用是5.3.0

npm i swiper@5.3.0 --save 
  • 1

然后在组件头部引入

import Swiper from 'swiper';
import 'swiper/css/swiper.css';
  • 1
  • 2

这里我使用的是class组件
初始化轮播组件

componentDidMount() {
        this.instanceSwiper()
}
   
instanceSwiper() {
    this.swiperObj = new Swiper('.swiper-container', {
        slidesPerView: 1,
        loop: false,
        autoplay: {// 自动滑动
            delay: 3000, //3秒切换一次
            // stopOnLastSlide: false,
            disableOnInteraction: false,//
        },
        observer: true,//修改swiper自己或子元素时,自动初始化swiper    重要
        observeParents: true,//修改swiper的父元素时,自动初始化swiper  重要

    })

}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

数据改变的时候,重新渲染

  componentDidUpdate() {
        this.swiperObj.update();
        this.swiperObj.slideTo(0, 1000, false);
  }
  • 1
  • 2
  • 3
  • 4

数据改变的时候可以会卡死,使用这个生命周期解决(list是传入的数据)。原理:当数据发生改变,先销毁swiper,再重新初始化。

componentWillReceiveProps = (nextProps) => {
        const { list: oldList } = this.props
        const { list: newList } = nextProps
        if (oldList != newList) {
            this.swiperObj.destroy();
            this.swiperObj = null;
            this.instanceSwiper()
        }
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

结束时销毁

  componentWillUnmount() {
        if (this.swiperObj.destroy) { // 销毁swiper
            this.swiperObj.destroy();
            this.swiperObj = null;
       }
  }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

render()中使用固定的class样式,在react中class换成className,swiper-container, swiper-no-swiping,swiper-wrapper,swiper-slide这几个className属性为固定写法,不能修改,但是可以添加样式con,swiperFather为组件外层样式。con样式添加的原因是必须设置一个height,否则无法显示轮播效果

render() {
        const { list} = this.props
		return (
        <div className={styles.swiperFather}>
            {/* /swiper-no-swiping关闭鼠标滑动  ${styles.con}设置轮播组件的宽高*/}
            <div className={`swiper-container swiper-no-swiping ${styles.con}`} style={{ overflow: 'hidden' }}>
                <div className={`swiper-wrapper ${styles.con}`}>
                    {
                        list && list.length > 0 && list.map((item, index) => {
                                return (
                                    <div className="swiper-slide" key={`swiper${index}`}>
                                   			...more//添加自己的业务代码
                                   </div>
								)
								
						})
				</div>
			</div>
		</div>
	)
	}
	css样式
	.swiperFather {
	    width: 700px;
	    height: 570px;
	    margin-left: auto;
	    margin-right: auto;
	    position: relative;
	}
	.con {
    	height: 570px;
	}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32

这个只是我个人的解决办法,应该还有其他办法

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/133939
推荐阅读
相关标签
  

闽ICP备14008679号