gpt4 book ai didi

javascript - 使用动态内容 react Swiper

转载 作者:行者123 更新时间:2023-11-29 17:44:39 26 4
gpt4 key购买 nike

我正在使用 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

最佳答案

在您的对象 swiperParamas 中包含以下属性

rebuildOnUpdate: true

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

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com