我無法弄清楚如何使用React Native更改圖像。我基本上有一系列圖像,當用戶按下圖像時,我想逐個顯示/更改圖像。 這是到目前爲止我的代碼:更改陣列onPress React原始圖像
var MOOD_LIST = ["sunny", "cloudy", "thunderstorm", "warm", "suncloudy"];
var MOODS = {
"warm": require('../design/warm.png'),
"sunny": require('../design/sunny.png'),
"cloudy": require('../design/cloudy.png'),
"suncloudy": require('../design/suncloudy.png'),
"thunderstorm": require('../design/thunderstorm.png'),
}
這是我的組件
class Home extends Component {
constructor(props) {
super(props);
this.state = {
mood: "sunny",
};
}
onMoodClick() {
var i = 0;
i++;
var mood = MOOD_LIST[i];
this.setState ({mood: mood});
}
getMoodImage(moodName) {
return MOODS[moodName];
}
render() {
return(
<TouchableWithoutFeedback onPress = {() => this.onMoodClick()}>
<Image source = {this.getMoodImage(this.state.mood)} style = {[styles.center, styles.MoodTodayImage]}/>
</TouchableWithoutFeedback>
);
}
}
截至目前,當我點擊圖片,那就只下一個圖像陣列上,並沒有按」繼續。我也不太清楚如何編碼我所知道的,如
for (var i = 0; i < mood.length; i++)
在我的React Native onMoodClick()方法中。
感謝您的幫助提前