在這裏,我填的陣列打印值localStorage
:無法從對象
let storageObj = {};
storageObj.date = (new Date().toLocaleString().replace(", ","T"));
storageObj.url = this.responseURL;
localStorage.setItem(storageObj.date, storageObj.url);
在mounted()
我是從localStorage
像遍歷所有的數據:
for(let obj of Object.entries(localStorage))
{
this.lastpasts.push(obj);
}
而且每個配售對象對lastpasts
(位於data() {lastpasts : []}
)。
在模板我只想url
打印:
<div class="ui divided items" v-for="el in lastpasts">
<div class="item">
{{el.url}}
</div>
</div>
但這種代碼不打印什麼。僅工作{{el}}
。它的打印在HTML塊:
[ "24.06.2017T11:55:10", "362e9cc5-e7e6" ]
[ "24.06.2017T12:26:47", "b0f9f20d-7851" ]
瀏覽器控制檯沒有任何錯誤。
能否請你放的'的console.log(EL)的結果' ? –
'的ReferenceError:1:13' –
噢,對不起EL不是在定義。我的錯。 'console.log(lastpasts)'(或lastposts?) –