sql >> Base de Datos >  >> RDS >> PostgreSQL

Botones de radio ng-checked con ng-model

Creo que solo debería usar ng-model y debería funcionar bien para usted, aquí está el enlace a la documentación oficial de angular https://docs.angularjs.org/api/ng/input/input%5Bradio%5D

El código del ejemplo no debería ser difícil de adaptar a su situación específica:

<script>
   function Ctrl($scope) {
      $scope.color = 'blue';
      $scope.specialValue = {
         "id": "12345",
         "value": "green"
      };
   }
</script>
<form name="myForm" ng-controller="Ctrl">
   <input type="radio" ng-model="color" value="red">  Red <br/>
   <input type="radio" ng-model="color" ng-value="specialValue"> Green <br/>
   <input type="radio" ng-model="color" value="blue"> Blue <br/>
   <tt>color = {{color | json}}</tt><br/>
</form>