反应数组的显示对象

时间:2019-11-24 07:55:57

标签: arrays reactjs

我必须在反应中显示数组的对象。在网上搜索后,我已经完成了以下代码。但这不起作用。有人可以帮助我在哪里出错。在此先感谢!

// Listen to storage, this way
window.addEventListener("storage", this.storageEventListener.bind(this));


private storageEventListener(event: StorageEvent) {
 if (event.storageArea == localStorage) {
      // Read some value
      // do something with the value
 }
}

2 个答案:

答案 0 :(得分:0)

上面的实现应该起作用。 除非您拼错了一些内容。

import requests d = {} with open("file.txt") as f: for line in f: (key, val) = line.split() d[int(key)] = val response = requests.post('https://companyname.jitbit.com/api/UpdateUser',auth=('username','password'), data=d) print(response)

确保 value.title 实际上退出了数组的对象。

答案 1 :(得分:-1)

在render方法之外进行映射,将数组存储在变量中,现在您可以在render方法中显示该变量。

const list = items.map((value,index) => {
        return (<div key={index}>{value.title}</div>)           
})
render(){
    <div>{list}</div>
}