我試圖從localstorage中檢索一個對象並嘗試將其加載到變量中。我怎樣才能做到這一點 ?這是我卡在哪裏將本地存儲中的對象存儲到變量中
var messageStorage={};
messageStorage.retrieve = function() {
var storageString = localStorage.getItem(credentials.mobileNumber);
var storageObj = JSON.parse(storageString);
// whats should go here for messageStorage to be equal to storageObj
};
on messageStorage.retrieve();變量messageStorage必須包含localstorage中的值。
設置變量等於變量?你想做的事似乎很奇怪。 – epascarello
在我看來,你很可能只需要返回函數中的storageObj值。嘗試添加return storageObj; – JanR
@JanR將使messageStorage = storageObj>? – vijar