我不明白这里的问题。我必须使用临时变量,因为它会导致代码的其他部分出现问题。
public orgTemp: any = null;
public orgList!: Array <Organization>;
errors:
this.api.ListOrganizations().then(event => {
this.orgList = event.items;
works:
this.api.ListOrganizations().then(event => {
this.orgTemp = event.items;
this.orgList = this.orgTemp;