gpt4 book ai didi

reactjs - React-Bootstrap 模态只获取 map 的最后一项

转载 作者:行者123 更新时间:2023-12-02 14:48:45 24 4
gpt4 key购买 nike

我是编码初学者。我正在创建我的平面设计师作品集。我已将所有投资组合内容(缩略图、客户名称、描述...)放入 JSON 文件中名为“投资组合”的数组中。数组中的每一项都是一个不同的项目。我显示了一系列缩略图,当我单击缩略图时,会打开一个包含项目详细信息的模式。

我映射到我的“投资组合”数组上以显示画廊,这很有效。但是当我打开模式时,它总是显示我数组的最后一项。

import React from 'react';
import Modal from 'react-bootstrap/Modal';

class Portfolio extends React.Component {
constructor(props, context) {
super(props, context);
this.state = {
error: null,
isLoaded: false,
items: [],
projectName: "",
show: false
};

this.handleShow = () => {
this.setState({ show: true });
};

this.handleClose = () => {
this.setState({ show: false });
};
}

componentDidMount() {
fetch("https://api.myjson.com/bins/1cbaj5")
.then(res => res.json())
.then(
(result) => {
this.setState({
isLoaded: true,
items: result.portfolio
});
},
(error) => {
this.setState({
isLoaded: true,
error
});
}
)
}

render() {
const {error, isLoaded, items} = this.state;
if (error) {
return <div>Erreur : {error.message}</div>;
} else if (!isLoaded) {
return <div>Chargement…</div>;
} else {
return (
<div id="portfolio">
<h2>Portfolio</h2>
<ul className="portfolio-list">
{items.map(item => (
<li key={item.client}>
<div className="vignette">

<button onClick={() => this.handleShow()}>
<h4>{item.client}</h4>
<div className="filtre"></div>
<img src={item.vignette} alt={item.titre} />
</button>

<Modal show={this.state.show} onHide={this.handleClose}>
<Modal.Header closeButton>
<h3>{item.client}</h3>
</Modal.Header>
<Modal.Body>
<p>{item.description}</p>
</Modal.Body>
</Modal>

</div>
</li>
))}
</ul>
</div>
);
}
}
}

export default Portfolio;

我希望模态显示相应的项目详细信息。感谢您的帮助。

最佳答案

你只需要有 1 个模式并在 item 点击时动态传递数据,

<ul className="portfolio-list">
{items.map(item => (
<li key={item.client}>
<div className="vignette">
<button onClick={()=> this.handleShow(item)}> //Pass complete item object here
<h4>{item.client}</h4>
<div className="filtre"></div>
<img src={item.vignette} alt={item.titre} />
</button>
</div>
</li>
))}
<Modal show={this.state.show} onHide={this.handleClose}> //Only one modal
<Modal.Header closeButton>
<h3>{this.state.activeItem.client}</h3>
</Modal.Header>
<Modal.Body>
<p>{this.state.activeItem.description}</p>
</Modal.Body>
</Modal>
</ul>

现在在您的handleShow 函数中您可以将item 设置为状态,

this.handleShow = (item) => {
this.setState({activeItem:item}, ()=> this.setState({ show: true }));
};

使用callback 显示模态,确保activeItem 有最新点击的item

初始状态,

this.state = {
error: null,
isLoaded: false,
items: [],
projectName: "",
show: false,
activeItem:'' //new added
};

关于reactjs - React-Bootstrap 模态只获取 map 的最后一项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57220998/

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