form control error:ERROR Error: No value accessor for form control with unspecified name attribute

前端 未结 4 1877
庸人自扰
庸人自扰 2021-01-03 20:56

In the below component when the component is loaded in the angular4 app I keep getting the error:

ng:///HeaderModule/HeaderComponent.ngfactory.js:334

4条回答
  •  孤城傲影
    2021-01-03 21:28

    in ionic 4 i had this error in my code:

     {{num_temp[i]}}
    

    i changed code to: (ngModel is Unnecessary in my code)

     {{num_temp[i]}}
    

    and now error not shown :)

提交回复
热议问题