我正在开发一个简单的应用程序,背景颜色应该根据季节而不同。到目前为止我已经写过:
class App extends React.Component {
constructor() {
super();
this.state = {
backgroundColor: 'blue'
}
}
handleSeason = (time) => {
const months = [
'January',
'February'
'March',
'April',
'May',
'June',
'July',
'August',
'September',
'October',
'November',
'December',
]
const month = months[time.getMonth()];
if (month === 'January' || month === 'February' || month === 'December') {
this.setState({backgroundColor: 'white'});
} else if
(month === 'March' || "April" || 'May') {
this.setState({ backgroundColor: 'yellow' });
} else if
(month==='June' || month ==='July' ||month ==='August'){
this.setState({ backgroundColor: 'green' });
} else {
this.setState({ backgroundColor: 'red' });
}
}
在渲染中,我返回以下 div:
<div className='app' style={{backgroundColor: this.state.backgroundColor }}>
背景保持蓝色。我不确定问题出在哪里。控制台没有显示任何错误。任何提示将不胜感激。
沧海一幻觉
牛魔王的故事
相关分类