我正在尝试通过get()
函数从数据库中获取一些信息,但是当我尝试运行它时,会得到标题错误,指出
at HomeTabPage.push ../src/app/home-tab/home-tab.page.ts.HomeTabPage.ngOnInit (home-tab.page.ts: 18)
否* ngFor我已经尝试使用Elvis参数,但是它不起作用。我已经从ngOnInit中传递了我的主要功能,并声明了另一个要引用的功能,但这没有用。
home-tab.page.html
<ion-list >
<ion-item *ngFor="let advert of advertList">
<ion-thumbnail slot="start">
<ion-img src="advert?.image"></ion-img>
</ion-thumbnail>
<ion-label>
<h2 >{{advert?.name}}</h2>
<h3 >{{advert?.price}}</h3>
<p >{{advert?.description}}</p>
</ion-label>
</ion-item>
</ion-list>
home-tab.page.ts
export class HomeTabPage implements OnInit {
public advertList: Array<any>;
constructor(private navCtrl: NavController, public adService: AdvertisingService) {}
ngOnInit(){
this.adService.getAdAllList().get().then(advertListSnapshot => {
this.advertList = [];
advertListSnapshot.forEach(snap =>{
this.advertList.push({
id: snap.id,
name: snap.data().name,
price: snap.data().price,
description: snap.data().description,
image: snap.data().picture
});
});
});
}
}
service.ts
export class AdvertisingService {
public adAllListRef: firebase.firestore.CollectionReference;
constructor() {
firebase.auth().onAuthStateChanged(user => {
if (user) {
this.adAllListRef = firebase.firestore().collection(`/adverts/adAll/adList`);
}
});
}
//cRud -> Read
getAdAllList(): firebase.firestore.CollectionReference {
return this.adAllListRef;
}
}
错误
HomeTabPage_Host.ngfactory.js? [sm]:1 ERROR TypeError: Cannot read property 'get' of undefined
at HomeTabPage.push../src/app/home-tab/home-tab.page.ts.HomeTabPage.ngOnInit (home-tab.page.ts:18)
at checkAndUpdateDirectiveInline (core.js:22099)
at checkAndUpdateNodeInline (core.js:23363)
at checkAndUpdateNode (core.js:23325)
at debugCheckAndUpdateNode (core.js:23959)
at debugCheckDirectivesFn (core.js:23919)
at Object.eval [as updateDirectives] (HomeTabPage_Host.ngfactory.js? [sm]:1)
at Object.debugUpdateDirectives [as updateDirectives] (core.js:23911)
at checkAndUpdateView (core.js:23307)
at callViewAction (core.js:23548)
答案 0 :(得分:2)
好的,有一种情况尚未被您的代码处理。如果user
中未定义firebase.auth().onAuthStateChanged
怎么办?您的this.adAllListRef
将不会初始化,因此在这种情况下,您也会遇到相同的错误。
我可能无法提供有效的代码,但是我可以建议您处理此问题的方法:
由于此页面仅在user
有效时有效,因此请尝试使用AuthGuard,可能类似于:
import { Injectable } from '@angular/core';
import { CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot, Router, Route } from '@angular/router';
import { Observable } from 'rxjs';
@Injectable()
export class AuthGuard implements CanActivate {
constructor(private _router: Router,private _advSvc: AdvertisingService) {
}
canActivate(next: ActivatedRouteSnapshot, state: RouterStateSnapshot): Promise<boolean>
{
return new Promise((resolve) => {
firebase.auth().onAuthStateChanged(user => {
if (user) {
resolve(true);
}else{
this._router.navigate(['/login']);
resolve(false);
}
});
}
}
在 AdvertisingService 中,您不需要检查user
,因为它只是因为AuthGuard
已经验证了用户而被调用。
export class AdvertisingService {
constructor() {
}
getAdAllList(): firebase.firestore.CollectionReference {
return firebase.firestore().collection(`/adverts/adAll/adList`);
}
}
并将router
定义为:
const route = [
{ .... },
{path: '/home',component: HomeTabPage, canActivate: [AuthGuard] },
{path: '/login',component: LoginPage }
]