react循環map的方法:先開啟對應的程式碼檔案;然後給子元素加入一個key作為唯一的識別;最後使用map遍歷即可。
本教學操作環境:windows7系統、react17.0.1版本、Dell G3電腦。
推薦:react影片教學
react中的map遍歷
<ul id="ul_rwardList"> { this.state.reward.map(function (item) { return ( <li className="db vh" key={item.id}> <div className="fx1">{item.num}</div> <div className="fx1">{item.username}</div> <div className="fx1 text-right">{item.rward_time}</div> </li> )}) } </ul>
tips:使用map遍歷時,需要給子元素加入一個key,作為唯一的識別,而且key值必須要連續
以上是react怎麼循環map的詳細內容。更多資訊請關注PHP中文網其他相關文章!