前提・実現したいこと
(使用:Vue.js、Typescript)
クエリでサブコレクション全体を取得、配列にしたデータを表示さたいのですが、
クエリから取得したDocumentSnapshotをスコープの外で使用するのはどうしたら良いでしょうか?
Typescript
1currentUser = firebase.auth().currentUser!; 2db = firebase.firestore(); 3 4async getData() { 5 const qSnapshot = await this.db 6 .collection('users') 7 .doc(this.currentUser.email!) 8 .collection('todolist') 9 .get(); 10 const todolists: any[] = []; 11 qSnapshot.forEach((dSnapshot) => todolists.push(dSnapshot.data())); 12} 13get todos(): ToDo[] { 14 //ここから取得; 15}
発生している問題・試したこと
todolistsをグローバルに表記すると
Typescript
1currentUser = firebase.auth().currentUser!; 2db = firebase.firestore(); 3todolists: any[] = [] 4async getData() { 5 const qSnapshot = await this.db 6 .collection('users') 7 .doc(this.currentUser.email!) 8 .collection('todolist') 9 .get(); 10 qSnapshot.forEach((dSnapshot) => this.todolists.push(dSnapshot.data())); 11} 12get todos(): ToDo[] { 13 console.log(this.todolists); 14 return this.todolists; 15}
となります。
(取得出来たらtodosはTodo型ではなくてany型になってしまうとは思います・・・。)
ご回答よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。