4

この値が文字列ではなくオブジェクトである場合、無線のデフォルト値を設定するにはどうすればよいですか?

編集:

より明確にするために、私は のフィドルを更新しました: フィドルをチェックしてください: http://jsfiddle.net/JohannesJo/CrH8a/

<body ng-app="app">
<div ng-controller='controller'>
            oConfigTerminal value= <input type="text" ng-model="oConfigTerminal"/><br><br>

    <div ng-show="!oConnection.aOptions"
    ng-repeat="oConnection in oFormOptions.aStationaryConnections">
        <label>
            <input type="radio" name="connection" ng-model="$parent.oConfigTerminal" value="{{oConnection.id}}"
            />{{oConnection.sId}}</label>
    </div>

</div>

app = angular.module('app', []);

app.controller('controller', function ($scope) {
$scope.oFormOptions = {};
$scope.oConfigTerminal=0;
$scope.oFormOptions.aStationaryConnections = [{
    id: 1,
    sId: "analog"
}, {
    id: 2,
    sId: "isdn"

}, {
    id: 3,
    sId: "dsl"
}];

// !!! Trying to set the default checked/selected value !!!
$scope.oConfigTerminal = $scope.oFormOptions.aStationaryConnections[0];
});
4

1 に答える 1

2

ブラウザ コンソールでライブ html を調べると、 が であり、 radio の値が になることがoConnectionわかりobjectます{"id":1,"sId":"analog"}。あなたはおそらくoConnection.id価値のために使いたい

そこにあるもう1つの問題は、に設定するng-repeatことで解決する必要があるスコープ継承の問題です。ng-modelng-model$parent.variableName

あなたoConnectionTmpViewは私には意味をなさなかったので、簡単にするために削除しました:

HTML:

<div ng-show="!oConnection.aOptions" ng-repeat="oConnection in oFormOptions.aStationaryConnections">
  <label>
       <input type="radio"  
              name="connection" 
              ng-model="$parent.oConfigTerminal" 
               value="{{oConnection.id}}"
         />
           {{oConnection.sId}}
     </label>
 </div>

JS:

app = angular.module('app', []);

app.controller('controller', function ($scope) {
    $scope.oFormOptions = {};
    $scope.oConfigTerminal = 0;
    $scope.oFormOptions.aStationaryConnections = [{
        id: 1,
        sId: "analog"
    }, {
        id: 2,
        sId: "isdn"

    }, {
        id: 3,
        sId: "dsl"
    }];
}

デモ: http://jsfiddle.net/CrH8a/14/

于 2013-03-10T21:25:09.350 に答える