提问人:Bhavik 提问时间:10/15/2023 更新时间:10/15/2023 访问量:21
我绑定以从 react 中的对象访问此 ID
I tying to get access to this ID from an object in react
问:
尝试从 react js 中的这个对象访问 id 但无法访问它,谁能告诉我该怎么做?
const[MovieList,setMovieList] = useState([]);
该列表存储在 MovieList 中。
答:
0赞
anitha
10/15/2023
#1
屏幕截图显示,它是一个数组,该数组在该 arr 的每个元素中都包含对象。
[ {..} , {...} , {...} ]
因此,您可以访问数组中存在的对象的 ID:
让响应存储在“response”变量中
常量响应 = [ {...} , {...} ,{...} ]
常量 {id} = 响应 [0]
评论
MovieList[0].id