アイテムを保管して取得したいカートサービスがあります。ただし、get
返品はお約束できます。
データを取得するにはどうすればよいですか? 約束をどのように解決しますか?私は以前にそれらを使用したことがありません。
印刷しても問題ありませんが、外部で使用する必要があります。
this.items=[];
if(localforage.length()!=0){
localforage.getItem('items').then(function (data) {
this.items.=data;
});
//this.items=this.getData();
//this.items.push(NewItems);
console.log(this.items);
//console.log(this.items);
}
誰か助けてくれませんか?