AngularJS radio display problem

after bi-directional binding of input of type radio in angularJS, sometimes the checkbox of type radio cannot be displayed. For some reason
the code is as follows:

< input type= "radio" value= "0" ng-model= "item.status" id="start" >
< label for= "start" > enable < / label >
< input type= "radio" value= "1" ng-model= "item.status" id="end" >
< label for= "end" > disable < / label >

how to deal with this problem can be eliminated

Mar.03,2021

has found out the reason, which is overwritten by someone else's style, thinking that two-way binding leads to a problem with radio display

Menu