Firebase 条件分岐をしてデータの読み取り(Firestore)
6717 ワード
はじめに
FirebaseのデータベースFirestoreで、条件分岐をしてからデータを取得する例です。
また、取得したデータの数をカウントしてます。
私の環境
・Ionic + Angular
whereを使う
eventの中身がこんな感じだとする。
event.model.ts
export class Event {
constructor(
public id?: string,
public title?: string,
public periods?: boolean,
) {}
}
home.page.ts
import { AngularFireAuth } from '@angular/fire/auth';
import { AngularFirestore } from '@angular/fire/firestore';
@Component({
selector: 'app-home',
templateUrl: 'home.page.html',
styleUrls: ['home.page.scss']
})
export class HomePage implements OnInit {
private eventCount;
private periodCount;
constructor(
private afAuth: AngularFireAuth,
private db: AngularFirestore
) { }
ngOnInit() {
this.afAuth.auth.onAuthStateChanged((user) => {
if (user != null) {
// events以下の全てのドキュメントを取得してカウント
this.db
.collection(`users/${user.uid}/events`)
.snapshotChanges()
.subscribe(c => {
this.eventCount = c.length;
});
// events以下のドキュメントでperiodsプロパティがtrueのドキュメントを取得
this.db
.collection(`users/${user.uid}/events`, ref =>
ref.where('periods', '==', true)
)
.snapshotChanges()
.subscribe(c => {
this.periodCount = c.length;
});
}
});
}
参考
}
Author And Source
この問題について(Firebase 条件分岐をしてデータの読み取り(Firestore)), 我々は、より多くの情報をここで見つけました https://qiita.com/kokogento/items/16a49100f76dbedf7b04著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .