未捕获的TypeError:无法设置属性' length'在VirtualScroll.readUpdate中为null

时间:2017-08-18 07:32:18

标签: angular typescript ionic3

我使用带有ngFor的简单离子列表来显示离子3和放大器列表中的项目。工作正常。然后我用离子列表&现在我收到以下错误:

  

未捕获的TypeError:无法设置属性' length'在VirtualScroll.readUpdate上为null

代码段:

 <ion-list [virtualScroll]="anArray" approxItemHeight="50px">
        <div *virtualItem="let arrayItem">
    //other code

Array declaration: 
    public anArray: any[];

In constructor:
    this.anArray = [];

After network response:
    this.anArray = data.result;

0 个答案:

没有答案