Angular 5 - “Cannot read property of undefined”

后端 未结 5 993
终归单人心
终归单人心 2021-01-04 07:12

In Angular 5, for input



        
5条回答
  •  温柔的废话
    2021-01-04 07:31

    Your techSpecMeta object do not have make property. Try initializing one in Init method.

    ngOnInit(){
    this.techSpecMeta= {make: ""};  }
    

提交回复
热议问题