\t \t <!DOCTYPE html>
\t \t <html>
\t \t <head>
\t \t \t <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
\t \t </head>
\t \t <body>
\t \t \t <div ng-app="myApp" ng-controller="customersCtrl">
\t \t \t <ul>
\t \t \t <!--Inside ng-repeat-->
\t \t \t \t <li ng-repeat="x in d">
\t \t \t \t {{$index}} <input ng-model="val">{{val}}
\t \t \t \t </li>
\t \t \t <!--Inside ng-repeat-->
\t \t \t \t <br><br><br>
\t \t \t <!--Outside ng-repeat-->
\t \t \t \t Outer<input ng-model="val">{{val}}
\t \t \t <!--Outside ng-repeat-->
\t \t \t </ul>
\t \t \t </div>
\t \t \t <script>
\t \t \t var app = angular.module('myApp', []);
\t \t \t app.controller('customersCtrl', function($scope) {
\t \t \t \t $scope.d=[1,2,3,4,5];
\t \t \t });
\t \t \t </script>
\t \t </body>
\t \t </html>
場景1:NG-模型= val爲相同所有NG-重複輸入框,但是當我在任何的原因它不是在所有表達式反映這些重複輸入框改變
方案2 :如果在重複輸入中範圍不同,我們如何參考這一點範圍。它就像val [o],val [1],val [2]那樣
場景3:如果我在外部輸入字段中更改而不更改或弄髒ng重複輸入字段,它是反映了所有的表情。 但如果我改變任何輸入字段,採取0,並改變外部輸入字段的值所有輸入字段(1,2,3,4),除了0正在改變... 什麼是在這裏處理的範圍和爲什麼範圍是這樣的?