如何修复 Angular 中无法读取未定义的属性
2019-07-03
2350
我从 Spring 服务器获取 JSON 格式的数据,数据恢复得很好,但是当我尝试在 Angular 组件中对它们进行 foreach 时,出现以下错误:无法读取未定义的 Affaires 属性
constructor(private serviceFam:FamillesService, private
serviceAff:AffaireService, private router:Router, private route:
ActivatedRoute) {
this.listeFamilles = this.route.snapshot.data;
this.listeAffaires = this.route.snapshot.data
for(let a of this.listeAffaires._embedded.affaires){
console.log(a.sn);
}
}
这是我的 API 调用:
//Connexion avec le serveur
export class AffaireService {
public host: string="http://localhost:8080";
constructor(private httpClient:HttpClient) {}
public getAllAffaires(){
return this.httpClient.get(this.host+"/affaires");
}
}
这是我的解析器:
@Injectable()
export class AffairesResolver implements Resolve<Affaire> {
constructor(private affaires: AffaireService) {}
resolve(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): any {
return this.affaires.getAllAffaires();
}
}
编辑:
这是我的 listeAffaires 变量的内容:
affaire:
page:
number: 0
size: 20
totalElements: 118
totalPages: 6
__proto__: Object
_embedded:
affaires: Array(20)
0: {id: 1, sn: "A129B", zc: null, certificat: null, etat: false, …}
1: {id: 2, sn: "1196M", zc: null, certificat: null, etat: false, …}
2: {id: 3, sn: "784M", zc: null, certificat: null, etat: false, …}
3: {id: 4, sn: "565M", zc: null, certificat: null, etat: false, …}
4: {id: 5, sn: "B161B", zc: null, certificat: null, etat: false, …}
5: {id: 6, sn: "A446B", zc: null, certificat: null, etat: false, …}
6: {id: 7, sn: "862M", zc: null, certificat: null, etat: false, …}
7: {id: 8, sn: "1594", zc: null, certificat: null, etat: false, …}
8: {id: 9, sn: "B112B", zc: null, certificat: null, etat: false, …}
9: {id: 10, sn: "40080", zc: null, certificat: null, etat: false, …}
10: {id: 11, sn: "A704B", zc: null, certificat: null, etat: false, …}
11: {id: 12, sn: "869M", zc: null, certificat: null, etat: false, …}
12: {id: 13, sn: "B069B", zc: null, certificat: null, etat: false, …}
13: {id: 14, sn: "930B", zc: null, certificat: null, etat: false, …}
14: {id: 15, sn: "1698", zc: null, certificat: null, etat: false, …}
15: {id: 16, sn: "287B", zc: null, certificat: null, etat: false, …}
16: {id: 17, sn: "B887B", zc: null, certificat: null, etat: false, …}
17: {id: 18, sn: "C875B", zc: null, certificat: null, etat: false, …}
18: {id: 19, sn: "A747B", zc: null, certificat: null, etat: false, …}
19: {id: 20, sn: "118BTC", zc: null, certificat: null, etat: false, …}
length: 20
__proto__: Array(0)
__proto__: Object
_links: {first: {…}, self: {…}, next: {…}, last: {…}, profile: {…}}
__proto__: Object
3个回答
我遇到了与您同样的问题,我试图迭代 Spring DATA 返回的对象,其中当然包括 _embedded。在我的情况下,我使用了 foreach,但在 ngOnInit() 内部,我得到了同样的错误。
解决方案是将 foreach 放在 subscribe() 函数内部,并在 ngOnInit() 内部调用该函数,我不知道为什么会发生这种情况,但它与同步和异步函数有关。
我希望这有一天会帮助到某人。
编辑 :这是 typescript 代码:
我从后端获取数据,然后将其存储在对象 cars 中,并在相同的 subscribe() 方法中迭代 cars._embedded.cars 并将 id 和 modele 存储在数组 dropdownCars 中。
dropdownCars = [];
public cars: any = {} ;
onGetCars(){
this.bankservice.getCars()
.subscribe(data => {
this.cars = data;
this.cars._embedded.cars.forEach(element => {
this.dropdownCars.push(
{id: element.id ,
modele: element.modele});
});
}, err => { console.log(err); } );
}
然后,您只需在 ngOnInit() 中调用该方法,这样您就可以确保
this.cars._embedded.cars
不会未定义
ngOnInit(): void {
this.onGetCars();
}
Abdelmounim
2020-09-24
for(let a of this.listeAffaires._embedded.affaires){
if(this.listeAffaires._embedded.affaires) console.log(a.sn);
}
添加我上面建议的检查应该可以解决您的问题
Seba Cherian
2019-07-03
尝试使用
paramMap
和
get
获取路线变量:
let id = this.route.snapshot.paramMap.get('id');
将参数读取为可观察变量:
this.route.paramMap
.subscribe(params => {
let id = params.get('id');
console.log(id);
});
更新:
如果要遍历参数:
this.route.paramMap
.subscribe(params => {
for (let key in params) {
if(params.hasOwnProperty(key)) {
console.log(key + ": " + params[key]);
}
}
});
StepUp
2019-07-03