谁能帮我解决以下问题。
错误:TypeError:无法读取未定义的属性“长度”
组件文件:
@Input()
allPropertyLines: any[];
@Input()
completedPropertyLines: any[];
allPropertyLength: number = 0;
completedPropertyLength: number = 0;
ngOnInit() {
this.allPropertyLength = this.allPropertyLines.length;
this.completedPropertyLength = this.completedPropertyLines.length;
}
规格文件:
beforeEach(() => {
fixture = TestBed.createComponent(ListPropertyComponent);
comp = fixture.componentInstance;
comp.ngOnInit();
});
it('should create component', () => expect(comp).toBeDefined());