作为标题我需要选择第一个单选按钮作为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”,但它没有用。
答案 0 :(得分:0)
我解决了它按建议我分配数组的第一个值:
$scope.fundSwitch.compatibleFund = FundService.extractFundSwitchParams(data)['fondiCompatibili'];
$scope.dispositive.request.rifFondo = $scope.fundSwitch.compatibleFund[0].codiceIsin;
感谢您的帮助。