我正在尝试检索房地产品牌的价值,但是我得到的是不确定的。
我的代码
temp = [{}];
for (var k = 0; k < localStorage.length; k++) {
const shoes = localStorage.getItem('shoe' + k);
if (shoes !== null) {
this.temp.push(localStorage.getItem('shoe' + k));
}
}
console.log(this.temp[1].brand);
console.log(this.temp);