gpt4 book ai didi

javascript - 数组播放列表映射返回意外标记

转载 作者:行者123 更新时间:2023-11-30 07:20:08 28 4
gpt4 key购买 nike

我正在尝试映射我的播放列表数组这样阵列中的每个播放列表都会显示

console.log(playlistsArray)原木 enter image description here

但是

  render() {
const playlistsArray = this.props.playLists
console.log(playlistsArray)
return(


{playlistsArray.map((playlist=>
<PlayList
playLists={this.props.playLists}
selectSong={this.selectSong}
selectList={this.selectList}
/>
))}


)}

返回意外的 token 。这是为什么?

最佳答案

您缺少 map 的括号

改变这个

{playlistsArray.map((playlist=>  

对此

{playlistsArray.map((playlist)=>  

关于javascript - 数组播放列表映射返回意外标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51183670/

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