我正在学习 React-Native 并在我的项目中使用 react-native-snap-carousel。我想显示一些图像,但出现错误 Cannot read property 'concat' of undefined
。
这是我的代码。
const HomePage = (props) => {
let imageList = ['../images/index-bg.png', '../images/down.png'];
const renderImage = ({ item, index }) => {
return (
<View>
<Image source={require(item)}></Image>
</View>
)
};
return (
<View>
<Carousel
loop={true}
autoplay={true}
data={imageList}
renderItem={renderImage}
sliderWidth={pxToDp(50)}
itemWidth={pxToDp(100)}
/>
</View>
)
}
如果我改变
<View>
<Image source={require(item)}></Image>
</View>
至
<View>
<Image source={'../images/index-bg.png'}></Image>
</View>
···
it works well
I expect it would work like [Usage](https://github.com/archriss/react-native-snap-carousel) but it doesn't work.