当前位置: 代码迷 >> 综合 >> react swiper bug 偶尔不展示
  详细解决方案

react swiper bug 偶尔不展示

热度:104   发布时间:2023-09-14 17:03:52.0

这个是数组为0是,初始化的swiper 对后续的swiper有影响了,加个 长度不等于零的判断

{props.model.length>0 ? <SwiperclassName='test-h'indicatorColor='#5F7C99'indicatorActiveColor='#297AF8'vertical={false}circularstyle={
    { height: `${props.height}px` }}indicatorDotsautoplay>{props.model.map((item, index) => {return <SwiperItem key={index}><Image src={item} className="img"></Image></SwiperItem>})}</Swiper> : null}
  相关解决方案