0

我已经开始使用 IONIC, ANGULAR 针对 Google Firestore 开发移动应用程序。这个应用程序将主要使用基于当前用户的文档以及我需要传递给该用户的大部分查询。但是,我在使用从我的服务到页面的以下代码从 firestore 获取文档时遇到问题:

用户配置文件.service.ts

async get(){      
      // await this.afAuth.user.subscribe(currentUser => {
      //   if(currentUser){      
      //     this.userId = currentUser.uid;
      //     console.log("User Current ID: " + this.userId);

       console.log("PP:" +this.afAuth.auth.currentUser.uid)
          return this.userProfilesCollection.doc<UserProfile>(this.afAuth.auth.currentUser.uid).snapshotChanges().pipe(
            map(doc => {
                    const id = doc.payload.id;
                    const data = doc.payload.data();
                    return{id, ...data };
                  }
                )
            );
}

登陆页面.page.ts

export class LandingPage implements OnInit {
  userProfile : UserProfile;

  constructor(
    private authService : AuthService,
    private loadingController : LoadingController,
    private userProfileService: UserProfileService,
    private router : Router
  ) {
   }

  ngOnInit() {
      this.loadUserProfile();
  }

  async loadUserProfile()                                                  {
    const loading = await this.loadingController.create({
      message: 'Loading user profile'
    });
    await loading.present();

    this.userProfileService.get().then(res=>{
      console.log(res);
      loading.dismiss();
    })
    // this.userProfileService.get().then(
    //   res =>
    //   {
    //     loading.dismiss();
    //     res.subscribe(c=>
    //       {
    //         this.userProfile = {
    //           cellphone: c.data.cellphone,
    //           dateOfBirth: c.data.dateOfBirth,
    //           email: c.data.email,
    //           firstname: c.data.firstname,
    //           gender: c.data.gender,
    //           id: c.data.id,
    //           lastname: c.data.lastname,
    //           telephone: c.data.telephone,
    //           userId: c.data.userId,
    //           website: c.data.website
    //         };
    //       });
    //   }
    // );
  }
}

有没有人有一个简单的例子来实现这一点,我需要使用加载配置文件在应用程序中导航,因为当前登录的用户将能够管理他们的配置文件和链接到他们的列表项(文档)?

4

0 回答 0