我有两个火灾商店集合,以下参考图片 。 我想获得 firstName 和 title 。此处 signup_id 是从 coll-signup 文档ID引用的。以下代码给出了我的所作所为。
模型feed.ts
export interface Feed {
firstName? : string;
signup_id? : string;
title? : string;
}
news feed.component模板
<ul *ngFor="let feed of feeds">
<!-- <li>{{feed.firstName}}</li> --> // Here I want to print my first name
<li>{{feed.title}}</li>
<li>{{feed.signup_id}}</li>
</ul>
新闻feed.component.ts
import { Component, OnInit } from '@angular/core';
import { Feed } from '../../models/feed';
import { FeedService } from '../../services/feed.service';
@Component({
selector: 'app-news-feed',
templateUrl: './news-feed.component.html',
styleUrls: ['./news-feed.component.css']
})
export class NewsFeedComponent implements OnInit {
feeds : Feed[];
constructor(private feedService: FeedService) { }
ngOnInit() {
this.feedService.sellectAllNews().subscribe(feeds => {
this.feeds = feeds;
})
}
}
feed.service.ts
import { AngularFirestore, AngularFirestoreCollection, AngularFirestoreDocument } from 'angularfire2/firestore';
import { Observable } from 'rxjs/Observable';
import { Feed } from '../models/feed';
@Injectable()
export class FeedService {
feedCollection : AngularFirestoreCollection<Feed>;
feedItem : Observable<Feed[]>;
constructor(private afs : AngularFirestore) {
this.collectionInitialization();
}
collectionInitialization() {
// I think here I have to modify or add next collection to will get the output
this.feedCollection = this.afs.collection('col-challange');
this.feedItem = this.feedCollection.stateChanges().map(changes => {
return changes.map(a => {
const data = a.payload.doc.data() as Feed;
return data;
})
})
}
sellectAllNews() {
this.collectionInitialization();
return this.feedItem;
}
}
这可以做火店吗? 我是消防店的新手。请帮帮我。谢谢!
答案 0 :(得分:13)
您需要合并两个集合。
试试这段代码
_forEach
答案 1 :(得分:4)
对于遇到问题的任何人,在使用 Angular6,RxJS 6 和 AngularFire v5.0 的同时在Firebase Cloud Firestore中合并文档,请尝试以下代码
模型feed.ts
export interface Feed {
firstName?: string;
signup_id?: string;
title?: string;
}
export interface CollSignup {
firstName: string;
mob: string;
}
export interface ColChallange {
signup_id: string;
title: string;
}
服务feed.service.ts
import { AngularFirestore, AngularFirestoreCollection } from '@angular/fire/firestore';
import { Observable, combineLatest } from 'rxjs';
import {flatMap, map} from 'rxjs/operators';
import {ColChallange, CollSignup, Feed} from '../../models/feed';
@Injectable()
export class FeedService {
colChallangeCollection: AngularFirestoreCollection<ColChallange>;
feedItem: Observable<Feed[]>;
constructor(private afs: AngularFirestore) { }
collectionInitialization() {
this.colChallangeCollection = this.afs.collection('col-challange');
this.feedItem = this.colChallangeCollection.snapshotChanges().pipe(map(changes => {
return changes.map( change => {
const data = change.payload.doc.data();
const signupId = data.signup_id;
const title = data.title;
return this.afs.doc('coll-signup/' + signupId).valueChanges().pipe(map( (collSignupData: CollSignup) => {
return Object.assign(
{firstName: collSignupData.firstName, signup_id: signupId, title: title}); }
));
});
}), flatMap(feeds => combineLatest(feeds)));
}
sellectAllNews() {
this.collectionInitialization();
return this.feedItem;
}
}
要打印所有数据
this.feedItem.forEach(value => {
console.log(value);
});