默认值单选按钮进入ng-repeat angularjs

时间:2015-12-02 16:54:47

标签: angularjs ionic-framework ionic hybrid-mobile-app

作为标题我需要选择第一个单选按钮作为ng-repeat的默认值。

  <div class="customRadio" ng-repeat="item in fundSwitch.compatibleFund track by $index">

   <ion-radio name="rifFondo" ng-model="dispositive.request.rifFondo" ng-value="item.codiceIsin" ng-checked="$first">
     <h3>{{item.descrizioneFondo}} {{$index}}</h3>
     <p><strong>Data valorizzazione :</strong> {{item.dataQuotazione}}</p>
   </ion-radio>
 </div>

我尝试了其他条件进入ng-checked:ng-checked =“$ index == 0”,但它没有用。

1 个答案:

答案 0 :(得分:0)

我解决了它按建议我分配数组的第一个值:

$scope.fundSwitch.compatibleFund = FundService.extractFundSwitchParams(data)['fondiCompatibili'];
    $scope.dispositive.request.rifFondo = $scope.fundSwitch.compatibleFund[0].codiceIsin;

感谢您的帮助。