gpt4 book ai didi

javascript - 如何使用 React (Rails) 遍历数组

转载 作者:行者123 更新时间:2023-11-30 11:46:42 24 4
gpt4 key购买 nike

我刚开始学习 React,我正在尝试弄清楚如何找到我正在寻找的特定值。就像你在 Ruby 中有 each.do 方法并且你可以遍历数组一样,我正在尝试用 React 来做到这一点。

class Gallery extends React.Component {
render () {
// debugger;
return (
<div>
<img> {this.props.gallery.thumbnail_url} </img>
</div>
)
}
}

我正在尝试访问 thumbnail._url,但在使用调试器时,我无法访问所有对象和图像。我想到了 this.props.gallery.object.thumbnail_url 和其他想法,但我不确定最好的方法! debugger information

最佳答案

使用 Array.prototype.map() 将数据映射到 React 元素。并不是说在循环中呈现的元素需要唯一标识符 ( keys ),以提高重新呈现列表的性能。

class Gallery extends React.Component {
render () {
const { gallery = [] } = this.props; // destructure the props with a default (not strictly necessary, but more convenient)

return (
<div>
{
gallery.map(({ id, thumbnail_url }) => (
<img key={ id } src={ thumbnail_url } />
))
}
</div>
)
}
}

关于javascript - 如何使用 React (Rails) 遍历数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40746168/

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