我有一個對象數組。使用地圖來創建HTML ReactJS
notifications = [
{notification:"this is notification1"},
{notification:"this is notification2"},
{notification:"this is notification3"},
]
我一直試圖通過數組映射並創建HTML代碼。
return (
<div>
{notifications.map(function(notificationItem) {
<a> {notificationItem.notification} </a>
})}
</div>
);
有人能告訴我這是什麼錯誤嗎?
謝謝!
非常感謝你 –