我绑定以从 react 中的对象访问此 ID

I tying to get access to this ID from an object in react

提问人:Bhavik 提问时间:10/15/2023 更新时间:10/15/2023 访问量:21

问:

enter image description here

尝试从 react js 中的这个对象访问 id 但无法访问它,谁能告诉我该怎么做?

const[MovieList,setMovieList] = useState([]);

该列表存储在 MovieList 中。

ReactJS 数组对象

评论

1赞 moonwave99 10/15/2023
你试过了什么?不起作用?MovieList[0].id
0赞 Bhavik 10/15/2023
感谢这种工作,但是当我尝试在第二个api调用中添加它时,它说无法读取未定义的属性。

答:

0赞 anitha 10/15/2023 #1

屏幕截图显示,它是一个数组,该数组在该 arr 的每个元素中都包含对象。

[ {..} , {...} , {...} ]

因此,您可以访问数组中存在的对象的 ID:

让响应存储在“response”变量中

常量响应 = [ {...} , {...} ,{...} ]

常量 {id} = 响应 [0]