這段代碼是每次改變舊的值,我想在本地存儲中得到一個新的對象
也許你想在現有本地存儲數據中添加注釋,這樣你就可以檢查是否已經設置了用戶注釋,然后獲取它或者設置一個空數組,
let notesObj = JSON.parse(localStorage.getItem("userNote")) || []
你的整個函數會是這樣的,
function addNote() {
const givenTitle = document.getElementById('titleInput');
const givenNote = document.getElementById('noteInput');
let notesObj = JSON.parse(localStorage.getItem("userNote")) || []
let myObj = {
title: givenTitle.value,
note: givenNote.value,
}
notesObj.push(myObj)
localStorage.setItem('userNote',JSON.stringify(notesObj));
}
上一篇帶有固定占位符的下拉列表
下一篇vue dcloude