gpt4 book ai didi

javascript - React - 只切换一个按钮,而不是全部

转载 作者:行者123 更新时间:2023-11-30 19:02:25 25 4
gpt4 key购买 nike

我有一个从 API 呈现城市的应用程序,在每个城市下面应该有一个按钮来显示这个城市的描述。现在,当我单击一个按钮时,所有按钮都会更改文本并显示描述组件。

我看到了几个类似的问题,我知道,我可能应该使用索引来判断哪个按钮应该在点击时起作用,但是我在将它应用到我的代码时遇到了问题。

class CitiesList extends React.Component {
constructor(props) {
super(props);
this.state = {
opened: false,
}
this.toggleButton = this.toggleButton.bind(this);
};

toggleButton() {
const {opened} = this.state;
this.setState({
opened: !opened,
})
}


render() {

const items = this.props.cities.map((data, index) => (
<div key={index}>
<h2>{data.city}</h2>
<p>PM 2.5 value: {data.value} {data.unit}</p>
{this.state.opened ? <Button variant="outlined" color="primary" size="small" onClick={this.toggleButton}>Hide city description</Button> : <Button variant="outlined" color="primary" size="small" onClick={this.toggleButton}>Show city description</Button>}
{this.state.opened && <CityDescription/>}

</div>
));
return (
<div>
<div>
{items}
</div>
</div>
)
}
}

现在在 CityDescription 组件中我只有:

class CityDescription extends React.Component {

render() {
return (
<div>
description
</div>
)
}
}

预先感谢您的帮助。

最佳答案

如@Muhammad 所述,只需进行少量更改即可完成这项工作。

下面的代码应该可以工作:

class CitiesList extends React.Component {
constructor(props) {
super(props);
this.state = {
opened: false,
}
};

toggleButton = (index) => {
const {opened} = this.state;
this.setState({
opened: {
...opened,
[index]: !opened[index]
}
})
}


render() {
const { opened } = this.state;
const items = this.props.cities.map((data, index) => (
<div key={index}>
<h2>{data.city}</h2>
<p>PM 2.5 value: {data.value} {data.unit}</p>
{opened[index] ? <Button variant="outlined" color="primary" size="small" onClick={() => this.toggleButton(index)}>Hide city description</Button> : <Button variant="outlined" color="primary" size="small" onClick={() => this.toggleButton(index)}>Show city description</Button>}
{opened[index] && <CityDescription/>}

</div>
));
return (
<div>
<div>
{items}
</div>
</div>
)
}
}

关于javascript - React - 只切换一个按钮,而不是全部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59380109/

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