我正在学习离子2,目前面临一些离子生命周期问题。我想在 api 获取成功数据后显示数据。
import {Component} from '@angular/core';
import {NavController} from 'ionic-angular';
import {LoadingController} from 'ionic-angular';
import WooCommerceAPI from 'woocommerce-api';
@Component({
selector: 'page-category',
templateUrl: 'category.html',
})
export class CategoryPage {
information: any[] = [];
infoChild: any[] = [];
wooApi: any;
wooCat: any;
categories: any = [];
constructor(public navCtrl: NavController, public loadingCtrl: LoadingController) {
this.wooApi = WooCommerceAPI(
{
url: 'abc.com/api/v1/cat',
}
);
//here also tried to call api
}
ngOnInit() {
//here also tried to call api
}
ionViewDidLoad() {
console.log("calling api");
/*from with nginit*/
this.wooApi.getAsync('products/categories?parent=0').then((data) => {
console.log("success");
this.wooCat = JSON.parse(data.body);
//this.information = this.wooCat;
for (let i = 0; i < this.wooCat.length; i++) {
console.log("in for loop");
this.wooApi.getAsync('products/categories?parent=' + this.wooCat[i].id).then((data) => {
console.log("get success", i);
let wooChild = JSON.parse(data.body);
for (let x = 0; x < wooChild.length; x++) {
this.infoChild.push(wooChild[x]['name']);
}
//console.log(this.infoChild)
this.information.push({
'items': {
'name': this.wooCat[i]['name'],
'children': [{
'name': this.infoChild
}]
}
});
this.infoChild = [];
});
}
console.log("current data", this.information);
});
}
}
我尝试用 constructor(( 调用 api,也用 **ngOnInit(( 和 ionViewDidLoad(( ** 数据正确获取,但没有反映在我的视图/html 页面上。
我的 Html 代码如下:
<accordion *ngFor="let catParent of information" [title]="catParent.items.name">
<!-- (click)="itemSelected(item)" -->
<ion-list *ngFor="let catChild of catParent.items.children">
<button ion-item *ngFor="let catChildName of catChild.name">
{{ catChildName }}
</button>
</ion-list>
</accordion>
因此,当我单击类别选项卡时,api 正在调用并获得响应,但无法在我的视图页面上看到此结果,现在如果我单击任何其他选项卡并再次单击类别选项卡,那么我能够看到这些数据。
由于我是 ionic 2 的新手,因此无法解决此问题。任何人都可以帮我解决这个问题。
提前致谢:)
- 最佳做法是从服务或提供程序类触发 HTTP 请求
- IonViewDidLoad 仅在加载页面时运行,因此空页面将在触发 HTTP 请求之前加载。
- 使用可以在视图渲染之前运行的 IonViewCanEnter
- 使用离子加载组件显示加载,以便用户知道后台正在发生某些事情
用包含信息数据条件的div 包装您的手风琴:
<div *ngIf="information.length>0;else noData">
<accordion *ngFor="let catParent of information" [title]="catParent.items.name">
...
</accordion>
</div>
<ng-template #noData>Loading accordion...</ng-template>