我正在使用react-id-swiper使用来自Instagram的图像制作轮播。响应后,Swiper组件似乎没有更新。我以为可以将setState放入componentWillMount中,但显然不行。当我在Chrome中打开检查器时,它开始工作了吗?

import React, { Component } from 'react'
import Swiper from 'react-id-swiper'
import request from 'superagent'
import './index.css'

const swiperParams = {
  slidesPerView: 5,
  spaceBetween: 0,
  navigation: {
    nextEl: '.swiper-button-next',
    prevEl: '.swiper-button-prev'
  },
  pagination: {
    el: '.swiper-pagination',
    clickable: true
  },
}

class Carousel extends Component {
  constructor(props) {
    super(props)
    this.state = {
      photos: []
    }
  }

  componentWillMount() {
    this.fetchPhotos();
  }

  fetchPhotos() {
    request
      .get('https://api.instagram.com/v1/users/self/media/recent/?access_token=' + process.env.INSTAGRAM_ACCESS_TOKEN)
      .then((res) => {
        this.setState({
          photos: res.body.data
        })
      })
  }

  render() {
    return (
      <Swiper {...swiperParams}>
        {this.state.photos.map((photo, key) => {
          return (
            <div key={photo.id}>
              <img src={photo.images.standard_resolution.url} alt={photo.caption} />
            </div>
          )
        })}
      </Swiper>
    )
  }
}

export default Carousel

最佳答案

我在react-id-swiper github上找到了this issue,这解决了我的问题。

我只需要在我的Swiper组件中添加shouldSwiperUpdate Prop 。该组件现在如下所示:

<Swiper {...swiperParams} shouldSwiperUpdate>
  ...
</Swiper>

每次重新渲染组件时,都会更新Swiper。

关于javascript - 使用动态内容对Swiper进行 react ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50805404/

10-12 06:42