提问者:小点点

为什么在更改值时嵌套作用域中的模型不会更新?[副本]


AngularJs来源:

<html ng-app>
  <body ng-controller="Controller">
    <div ng-init="numbers=[11,22,33]">
       <div ng-repeat="n in numbers">
         <input type="text" ng-model="n"/> [{{n}}]
       </div>
    </div>
    <script>
        function Controller($scope) {}
    </script>
  </body>
</html>

当我更改输入的值时,右边的文本不会更新。哪里出了问题?

现场演示在这里:http://jsfiddle.net/Freewind/TZwxy/

您可以更改输入中的值并查看。


共1个答案

匿名用户

请尝试使用对象数组:

function Controller($scope) {
  $scope.numbers = [{value: 11 }, {value: 22 }, {value: 33 }];
}

<html ng-app>
  <body ng-controller="Controller">
    <div>
       <div ng-repeat="n in numbers">
         <input type="text" ng-model="n.value"/> [{{n.value}}]
       </div>
    </div>
  </body>

</html>

见jsFiddle。