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/
您可以更改输入中的值并查看。