我已遵循文档here来从Firestore获取具有文档ID的数据。
import { Injectable } from '@angular/core';
import { AngularFirestore, AngularFirestoreCollection } from '@angular/fire/firestore';
import { Observable } from 'rxjs';
import { map } from 'rxjs/operators';
import 'rxjs/add/operator/map';
@Injectable()
export class UserService {
userCol : AngularFirestoreCollection<UserInter>;
users : Observable<UserInter[]>;
constructor(private afs:AngularFirestore) { }
GetUsers(){
this.userCol = this.afs.collection<UserInter>('users');
this.users = this.userCol.snapshotChanges().pipe(
map(changes =>{
error here-> return changes.map(a => {
const data = a.payload.doc.data() as UserInter;
data.id = a.payload.doc.id;
return data;
})
}))
return this.users;
}
export interface UserInter {
email ?: string,
Firstname ?: string,
Lastname ?: string,
Address ?: string,
}
export interface UserInterid extends UserInter {id ?: string }
当我为我的应用程序提供服务时,出现此错误
类型“ {}”上不存在属性“地图”
答案 0 :(得分:0)
GetUsers(){
this.userCol = this.afs.collection<UserInter>('users');
this.users = this.userCol.stateChanges(['added']).pipe(
map(changes =>{
return changes.map(a => {
const data = a.payload.doc.data() as UserInter;
data.id = a.payload.doc.id;
return data;
})
}))
return this.users;
}
答案 1 :(得分:0)
您可以尝试这个吗
_controller
答案 2 :(得分:0)
我通过使用不带管道的地图运算符解决了该错误。 该代码有效
import { Injectable } from '@angular/core';
import { AngularFireAuth } from 'angularfire2/auth';
import { AngularFirestore, AngularFirestoreCollection } from '@angular/fire/firestore';
import { Observable } from 'rxjs';
import 'rxjs/add/operator/map';
@Injectable()
export class UserService {
uid;
userCol : AngularFirestoreCollection<UserInter>;
users : Observable<any>;
constructor(private Uauth:AngularFireAuth, private afs:AngularFirestore) { }
GetUsers(){
this.userCol = this.afs.collection('users');
this.users = this.userCol.snapshotChanges()
.map(action => {
return action.map(a => {
const data = a.payload.doc.data() as UserInter;
const id = a.payload.doc.id;
return {id, data };
})
})
return this.users;
}
}
export interface UserInter {
email ?: string,
pass ?: string,
Rpass ?: string,
Firstname ?: string,
Lastname ?: string,
Society ?: string,
Landmark ?: string,
Address ?: string,
PrimaryNo ?: string,
SecondaryNo ?: string,
ExpiryDate ?: Date,
Orders ?: string,
}
export interface UserInterid extends UserInter {id ?: string }